/* ============================================
   Guminert – Primary typeface (local, no CDN)
   ============================================ */
   @font-face {
    font-family: "Satoshi";
    src: url("/assets/fonts/Satoshi-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

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

html {
    overflow-x: hidden;
    width: 100%;
    /* Use native scroll for smoother desktop scrolling (smooth via JS for anchor links only) */
    scroll-behavior: auto;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Satoshi';
    font-weight: 400;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    padding-top: 72px;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography hierarchy – balanced weight, modern SaaS feel */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi';
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.375rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }

/* Buttons – medium / semi-bold */
button,
[type="button"],
[type="submit"],
[type="reset"],
.btn,
a.btn {
    font-family: 'Satoshi';
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Global overflow safety */
img, svg, video, canvas {
    max-width: 100%;
}

.container {
    max-width: 1570px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles - promote to layer for smoother scroll with backdrop-filter */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo a:hover .logo-img {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

/* Header Drawer (Desktop: inline, Mobile: off-canvas) */
.header-drawer {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 0;
}

.mobile-drawer-overlay {
    display: none;
}

/* Hide mobile menu logo on desktop */
.mobile-menu-logo {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #000000;
    background: rgba(37, 99, 235, 0.05);
}

.nav-link:hover::before {
    width: calc(100% - 32px);
}

.nav-link.active {
    color: #000000;
    font-weight: 600;
    background: rgba(37, 99, 235, 0.08);
}

.nav-link.active::before {
    width: calc(100% - 32px);
}

.btn-get-started {
    background: linear-gradient(135deg, #570099 0%, #020241 100%);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    gap: 8px;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.btn-get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-get-started:hover::before {
    left: 100%;
}

.btn-get-started:active {
    transform: translateY(0);
}

.btn-get-started svg {
    transition: transform 0.3s ease;
}

.btn-get-started:hover svg {
    transform: translateX(2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #1f2937;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* Hero Section - Full width like other sections */
.hero-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
    /* Optimize rendering - avoid will-change to prevent scroll jank */
    contain: layout style paint;
    will-change: auto;
}

/* Prevent layout overflow inside hero sections */
.hero-content,
.ai-content {
    max-width: 100%;
}

.hero-left,
.hero-right,
.ai-left,
.ai-right {
    min-width: 0;
}

.dashboard-mockup,
.ai-bg-image,
.ai-hero-image {
    max-width: 100%;
    height: auto;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/section1-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(139, 92, 246, 0.12) 25%,
        rgba(168, 85, 247, 0.08) 45%,
        rgba(192, 132, 252, 0.04) 65%,
        transparent 85%);
    border-radius: 50%;
    filter: blur(100px);
    animation: floatGlowBlob 12s ease-in-out infinite;
    will-change: transform, opacity;
    right: -5%;
    /* Hardware acceleration for smooth animation */
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 35%;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, 
        rgba(99, 102, 241, 0.12) 0%, 
        rgba(139, 92, 246, 0.1) 25%,
        rgba(59, 130, 246, 0.08) 45%,
        rgba(147, 197, 253, 0.04) 65%,
        transparent 85%);
    border-radius: 50%;
    filter: blur(90px);
    animation: floatGlowBlob 14s ease-in-out infinite reverse;
    will-change: transform, opacity;
    /* Hardware acceleration for smooth animation */
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes floatGlowBlob {
    0%, 100% {
        opacity: 0.6;
        transform: translate3d(0, 0, 0) scale(1);
    }
    33% {
        opacity: 0.8;
        transform: translate3d(20px, -30px, 0) scale(1.05);
    }
    66% {
        opacity: 0.7;
        transform: translate3d(-15px, 20px, 0) scale(0.98);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 120px;
    align-items: center;
    padding: 0;
    margin: 0;
}

/* Left Section - Content */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 640px;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    z-index: 3;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    right: -120px;
    bottom: -200px;
    background: linear-gradient(to right, 
        #ffffff 0%,
        #ffffff 50%,
        rgba(255, 255, 255, 0.95) 55%,
        rgba(255, 255, 255, 0.8) 60%,
        rgba(255, 255, 255, 0.4) 70%,
        transparent 100%);
    z-index: -1;
    pointer-events: none;
}

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

/* Hero typography – tuned for balance (avoids heavy-weight glyph unevenness) */
.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin: 0;
    font-family: 'Satoshi';
}

.hero-headline {
    font-size: 64px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: 'Satoshi';
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-description {
    font-size: 20px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-family: 'Satoshi';
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3), 0 0 0 0 rgba(37, 99, 235, 0.4);
    position: relative;
    overflow: hidden;
    font-family: 'Satoshi'; 
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4), 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-primary-cta:hover::before {
    left: 100%;
}

.btn-secondary-cta {
    background: transparent;
    color: #475569;
    border: 1.5px solid #e2e8f0;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Satoshi'; 
}

.btn-secondary-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-secondary-cta:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #334155;
    transform: translateY(-1px);
}

.btn-secondary-cta:hover svg {
    transform: scale(1.1);
}

/* About page hero buttons (were missing base styles) */
.btn-start-trial {
    background: linear-gradient(135deg, #570099 0%, #020241 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(87, 0, 153, 0.25);
    position: relative;
    overflow: hidden;
    font-family: 'Satoshi'; 
}

.btn-start-trial::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.btn-start-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(87, 0, 153, 0.32);
}

.btn-start-trial:hover::before {
    transform: translateX(120%);
}

.btn-secondary-ghost {
    background: rgba(255, 255, 255, 0.6);
    color: #1f2937;
    border: 1.5px solid rgba(15, 23, 42, 0.12);
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: 'Satoshi'; 
}

.btn-secondary-ghost:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(15, 23, 42, 0.18);
}

.hero-trust-text {
    font-size: 14px;
    color: #333333;
    margin: 0;
    font-weight: 500;
    font-family: 'Satoshi'; 
}

/* Right Section - Mockup Container */
.hero-right {
    position: relative;
    height: 720px;
    opacity: 0;
    animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    z-index: 2;
}

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

.mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-container::before {
    display: none;
}

.mockup-container::after {
    display: none;
}

.mockup-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.mockup-wrapper::before {
    display: none;
}

.dashboard-mockup {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    /* 3D perspective with subtle rotation - static, no animation */
    transform: perspective(1200px) rotateY(-3deg) rotateX(3deg);
    /* Hero image animation disabled - code commented below */
    /* transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); */
    /* animation: floatMockup 8s cubic-bezier(0.4, 0, 0.6, 1) infinite; */
    transition: none;
    animation: none;
    will-change: auto;
    /* Enhanced premium shadows and glow */
    filter: 
        drop-shadow(0 50px 120px rgba(37, 99, 235, 0.3))
        drop-shadow(0 20px 80px rgba(99, 102, 241, 0.25))
        drop-shadow(0 0 60px rgba(139, 92, 246, 0.2))
        drop-shadow(0 10px 40px rgba(168, 85, 247, 0.15));
    mix-blend-mode: normal;
    opacity: 1;
}

/* Hero image float animation - disabled (commented out)
@keyframes floatMockup {
    0%, 100% {
        transform: perspective(1200px) rotateY(-3deg) rotateX(3deg) translate3d(0, 0, 0);
    }
    50% {
        transform: perspective(1200px) rotateY(-3deg) rotateX(3deg) translate3d(0, -15px, 0);
    }
}
*/

/* Marquee Stripes Section */
.marquee-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    /* Optimize rendering performance */
    contain: layout style paint;
    will-change: contents;
}

.marquee-stripe {
    width: 100%;
    padding: 24px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    /* Optimize for performance */
    transform: translateZ(0);
    will-change: contents;
}

.marquee-stripe-top {
    border-bottom: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.marquee-stripe-bottom {
    border-top: none;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.03);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: marqueeScrollLeft 30s linear infinite;
    will-change: transform;
    /* Hardware acceleration for smooth animation */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    -webkit-font-smoothing: antialiased;
}

.marquee-content-reverse {
    animation: marqueeScrollRight 30s linear infinite;
    /* Hardware acceleration for smooth animation */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    -webkit-font-smoothing: antialiased;
}

.marquee-item {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.marquee-item:hover {
    color: #6b21a8;
}

.marquee-item-2 {
    font-size: 18px;
    font-weight: 700;
    color: #1A83EC;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.marquee-item-2:hover {
    color: #6b21a8;
}

.marquee-separator {
    font-size: 18px;
    color: #cbd5e1;
    font-weight: 400;
    flex-shrink: 0;
}

/* Marquee Animations - Optimized for performance */
@keyframes marqueeScrollLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes marqueeScrollRight {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Responsive Marquee */
@media (max-width: 968px) {
    .marquee-stripe {
        padding: 20px 0;
    }
    
    .marquee-item {
        font-size: 16px;
    }
    
    .marquee-content {
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .marquee-stripe {
        padding: 8px 0;
    }
    
    .marquee-item {
        font-size: 14px;
    }
    
    .marquee-content {
        gap: 20px;
    }
}

/* Floating Notifications Container */
.notifications-container {
    position: absolute;
    top: 60px;
    bottom: auto;
    right: calc(50% - 180px);
    width: 280px;
    height: 300px;
    z-index: 10;
    pointer-events: none;
    overflow: visible;
}

.notification-card {
    position: absolute;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

/* Notification Position States - Overlap Method */
.notification-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity, filter;
}

/* Burst animation - sliding in from top */
.notification-card.position-burst-in {
    top: -80px;
    z-index: 15;
    opacity: 0;
    transform: translateY(0) scale(0.85);
    filter: blur(6px);
}

/* Stacked positions for burst effect */
.notification-card.position-stack-1 {
    top: 0;
    z-index: 8;
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
    animation: floatNotification1 0.8s ease-in-out infinite;
}

.notification-card.position-stack-2 {
    top: 85px;
    z-index: 7;
    opacity: 0.9;
    transform: translateY(0) scale(0.98);
    filter: blur(0.5px);
    animation: floatNotification2 0.8s ease-in-out infinite;
    animation-delay: 0.1s;
}

.notification-card.position-stack-3 {
    top: 170px;
    z-index: 6;
    opacity: 0.8;
    transform: translateY(0) scale(0.96);
    filter: blur(1px);
    animation: floatNotification3 0.8s ease-in-out infinite;
    animation-delay: 0.2s;
}

.notification-card.position-stack-4 {
    top: 255px;
    z-index: 5;
    opacity: 0.65;
    transform: translateY(0) scale(0.94);
    filter: blur(1.5px);
}

.notification-card.position-stack-5 {
    top: 340px;
    z-index: 4;
    opacity: 0.5;
    transform: translateY(0) scale(0.92);
    filter: blur(2px);
}

.notification-card.position-stack-6 {
    top: 425px;
    z-index: 3;
    opacity: 0.35;
    transform: translateY(0) scale(0.9);
    filter: blur(2.5px);
}

.notification-card.position-stack-7 {
    top: 510px;
    z-index: 2;
    opacity: 0.2;
    transform: translateY(0) scale(0.88);
    filter: blur(3px);
}

.notification-card.position-stack-8 {
    top: 595px;
    z-index: 1;
    opacity: 0.1;
    transform: translateY(0) scale(0.86);
    filter: blur(3.5px);
}

/* New notification sliding in from bottom (laptop screen) - slides up to top */
.notification-card.position-slide-in {
    top: 280px;
    bottom: auto;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    filter: blur(4px);
}

/* Front notification - fully visible at top (black mark position) */
.notification-card.position-front {
    top: 0;
    bottom: auto;
    z-index: 5;
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
    animation: floatNotification1 0.8s ease-in-out infinite;
}

/* Moving up - going behind */
.notification-card.position-moving-down {
    top: 0;
    bottom: auto;
    z-index: 4;
    opacity: 0.6;
    transform: translateY(-100px) scale(0.9);
    filter: blur(3px);
}

/* Behind - hidden */
.notification-card.position-behind {
    top: -100px;
    bottom: auto;
    z-index: 1;
    opacity: 0;
    transform: translateY(-100px) scale(0.85);
    filter: blur(4px);
    pointer-events: none;
}

/* Hidden - waiting at bottom */
.notification-card.position-hidden {
    top: 280px;
    bottom: auto;
    z-index: 0;
    opacity: 0;
    transform: translateY(0) scale(0.9);
    filter: blur(4px);
    pointer-events: none;
}

/* Initial positions - all hidden at bottom, will be animated by JavaScript */
.notification-card-1,
.notification-card-2,
.notification-card-3,
.notification-card-4,
.notification-card-5,
.notification-card-6,
.notification-card-7,
.notification-card-8 {
    top: 280px;
    bottom: auto;
    z-index: 0;
    opacity: 0;
    transform: translateY(0) scale(0.85);
    filter: blur(6px);
    pointer-events: none;
}

/* Continuous Floating Animations - Fast Mode (from bottom) */
@keyframes floatNotification1 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatNotification2 {
    0%, 100% {
        transform: translateY(0px) scale(0.95);
    }
    50% {
        transform: translateY(-8px) scale(0.95);
    }
}

@keyframes floatNotification3 {
    0%, 100% {
        transform: translateY(0px) scale(0.9);
    }
    50% {
        transform: translateY(-6px) scale(0.9);
    }
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

.notification-icon-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.notification-icon-analytics {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
}

.notification-icon-payment {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 1.3;
}

.notification-subtitle {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.notification-card-1 .notification-subtitle {
    color: #f97316;
}

.notification-card-2 .notification-subtitle {
    color: #10b981;
}

.notification-card-3 .notification-subtitle {
    color: #3b82f6;
}

.notification-subtitle.color-orange {
    color: #f97316;
}

.notification-subtitle.color-green {
    color: #10b981;
}

.notification-subtitle.color-blue {
    color: #3b82f6;
}

.notification-card-3 .notification-subtitle {
    color: #3b82f6;
}

/* Responsive adjustments for notifications */
@media (max-width: 1200px) {
    .notifications-container {
        right: calc(50% - 140px);
        width: 240px;
        height: 280px;
        top: 50px;
    }
}

@media (max-width: 968px) {
    .notifications-container {
        right: calc(50% - 100px);
        width: 200px;
        height: 250px;
        top: 40px;
        bottom: auto;
    }
    
    .notification-card {
        padding: 12px;
    }
    
    .notification-card-2 {
        top: 75px;
    }
    
    .notification-card-3 {
        top: 150px;
    }
}

/* ============================================
   About Page Hero - Premium Agency Design (Full width like other sections)
   ============================================ */
.about-hero-section {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 20px 0 20px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: 
        radial-gradient(ellipse 100% 80% at 70% 20%, rgba(87, 0, 153, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(2, 2, 65, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Align hero left content with mission-vision section image (same left edge) */
.about-hero-left {
    max-width: 700px;
    gap: 24px;
    margin-left: 0;
    padding-left: 0;
    justify-self: start;
}

.about-hero-left::before {
    display: none;
}

.about-hero-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
    color: #570099;
    margin: 0;
    font-family: 'Satoshi';
}

.about-hero-headline {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0;
    font-family: 'Satoshi';
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.about-hero-headline .highlight-text {
    color: #570099;
    position: relative;
}

.about-hero-subtext {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #475569;
    margin: 0;
    font-weight: 400;
    font-family: 'Satoshi';
}

.about-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Satoshi'; 
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #570099 0%, #020241 100%);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(87, 0, 153, 0.25);
}

.btn-about-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(87, 0, 153, 0.3);
}

.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Satoshi'; 
    text-decoration: none;
    color: #1e293b;
    background: #ffffff;
    border: 1.5px solid rgba(15, 23, 42, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-about-secondary:hover {
    transform: translateY(-1px);
    border-color: rgba(15, 23, 42, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.about-hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-top: 8px;
}

.about-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-hero-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    font-family: 'Satoshi'; 
}

.about-hero-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    font-family: 'Satoshi'; 
}

.about-hero-stat-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.12), transparent);
}

.about-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.about-hero-visual {
    width: 100%;
    max-width: 560px;
    position: relative;
}

.about-hero-visual::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(87, 0, 153, 0.06) 50%, rgba(2, 2, 65, 0.04) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.about-hero-visual-inner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.04),
        0 20px 50px -12px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    background: #ffffff;
}

.about-hero-section .hero-about-image {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 24px;
}

.about-hero-section .hero-about-image:hover {
    transform: none;
}

/* About Page Hero Image (legacy / other pages) */
.hero-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.about-hero-section .hero-image-container {
    padding-top: 0;
}

.hero-about-image {
    width: 100%;
    max-width: 750px;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.hero-about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(87, 0, 153, 0.03) 0%, rgba(2, 2, 65, 0.03) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.hero-about-image:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 40px 0;
    background-color: #f9fafb;
}

.mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.mission-vision-left {
    position: relative;
    opacity: 0;
    animation: fadeInScale 1s ease 0.3s forwards;
    margin-left: 0;
    padding-left: 0;
    justify-self: start;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mission-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mission-image {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.mission-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(87, 0, 153, 0.02) 0%, rgba(2, 2, 65, 0.02) 100%);
    border-radius: 24px;
    pointer-events: none;
}

.mission-image:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.mission-vision-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
}

.mission-headline {
    font-size: 52px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.22;
    margin: 0;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mission-headline .highlight-text {
    color: #570099;
    position: relative;
}

.mission-section,
.vision-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.mission-section {
    animation-delay: 0.7s;
}

.vision-section {
    animation-delay: 0.9s;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 19px;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

/* Mission Vision Divider */
.mission-vision-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.divider-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #570099;
    flex-shrink: 0;
}

.divider-icon svg {
    width: 20px;
    height: 20px;
}

/* CTA Section */
.mission-cta-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.1s forwards;
}

.btn-get-in-touch {
    background: linear-gradient(135deg, #570099 0%, #020241 100%);
    color: #ffffff;
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(87, 0, 153, 0.3);
}

.btn-get-in-touch:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(87, 0, 153, 0.4);
}

.mission-secondary-cta {
    color: #570099;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mission-secondary-cta:hover {
    color: #020241;
    transform: translateX(4px);
}

/* Trust Strip */
.mission-trust-strip {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    margin-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    animation: fadeUp 0.8s ease 1.3s forwards;
}

.trust-item-small {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.trust-item-small svg {
    color: #10b981;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* How Ziplofy Helps You Grow Section */
.grow-section {
    padding: 40px 0;
    background: #fdfdfd;
    position: relative;
}

.grow-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    max-width: 1500px;
    margin: 0 auto;
    align-items: start;
}

/* Left Column: Philosophy Panel */
.grow-philosophy-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
    align-self: start;
}

.grow-philosophy-headline {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.025em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.grow-philosophy-accent {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, #570099 0%, #020241 100%);
    margin-top: 4px;
    border-radius: 1px;
}

.grow-philosophy-description {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    max-width: 100%;
}

/* Micro Proof Stats */
.grow-philosophy-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.grow-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.grow-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.grow-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.grow-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, 0.08);
}

/* Right Column: Capability Cards */
.grow-capabilities-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grow-capability-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 36px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    cursor: pointer;
    transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 2px 6px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.grow-capability-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(87, 0, 153, 0.04);
    transition: width 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.grow-capability-card:hover,
.grow-capability-card.active {
    background: rgba(87, 0, 153, 0.02);
    box-shadow: 
        0 4px 12px rgba(87, 0, 153, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px) scale(1.01);
}

.grow-capability-card.active::before {
    width: 3px;
}

.grow-capability-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #6b7280;
    transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2px;
}

.grow-capability-card:hover .grow-capability-icon,
.grow-capability-card.active .grow-capability-icon {
    color: #570099;
    transform: scale(1.05);
}

.grow-capability-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.grow-capability-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.grow-capability-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.grow-capability-subtitle {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.grow-capability-card:hover .grow-capability-title,
.grow-capability-card.active .grow-capability-title {
    color: #570099;
}

.grow-capability-card:hover .grow-capability-subtitle,
.grow-capability-card.active .grow-capability-subtitle {
    color: #4b5563;
}

/* Inactive state - muted */
.grow-capability-card:not(.active) {
    opacity: 0.75;
}

.grow-capability-card:not(.active):hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grow-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .grow-philosophy-column {
        position: static;
    }

    .grow-philosophy-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .grow-section {
        padding: 60px 0;
    }

    .grow-layout {
        gap: 40px;
    }

    .grow-philosophy-headline {
        font-size: 32px;
    }

    .grow-philosophy-description {
        font-size: 17px;
    }

    .grow-capability-card {
        padding: 28px 24px;
        gap: 20px;
    }

    .grow-capability-title {
        font-size: 22px;
    }

    .grow-capability-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .grow-section {
        padding: 50px 0;
    }

    .grow-capability-card {
        padding: 24px 20px;
        gap: 16px;
    }

    .grow-capability-icon {
        width: 20px;
        height: 20px;
    }

    .grow-capability-title {
        font-size: 20px;
    }

    .grow-capability-subtitle {
        font-size: 14px;
    }

    .grow-stat-value {
        font-size: 20px;
    }
}

/* Why Brands Choose Ziplofy Section */
/* Why Brands Choose Ziplofy Section - Premium Enterprise SaaS Design */
.why-choose-section {
    padding: 40px 0;
    background: #fafbfc;
    position: relative;
}

.why-choose-title {
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.why-choose-subtitle {
    font-size: 18px;
    color: #6B7280;
    text-align: center;
    margin: 0 0 80px 0;
    font-weight: 400;
    line-height: 1.6;
}

/* 2-Column Interactive Grid - Desktop First */
.why-choose-interactive-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    max-width: 1500px;
    margin: 0 auto;
    align-items: start;
}

/* Left: Spotlight Proof Card */
.why-choose-spotlight {
    position: relative;
}

.why-choose-spotlight-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 56px;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.03),
        0 8px 24px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Content Area */
.why-choose-spotlight-content {
    margin-bottom: 48px;
    position: relative;
    min-height: 140px;
}

.why-choose-content-wrapper {
    position: relative;
}

.why-choose-spotlight-title {
    font-size: clamp(32px, 3.5vw, 40px);
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px 0;
    line-height: 1.25;
    letter-spacing: -0.025em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: opacity 0.24s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-spotlight-description {
    font-size: 19px;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
    transition: opacity 0.24s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Proof Area - Chips */
.why-choose-proof-area {
    flex: 1;
    display: flex;
    align-items: flex-start;
    position: relative;
    min-height: 180px;
}

.why-choose-proof-item {
    position: absolute;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.24s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.why-choose-proof-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.why-choose-proof-chip {
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 140px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-proof-chip:hover {
    background: #f3f4f6;
    border-color: rgba(87, 0, 153, 0.1);
    transform: translateY(-1px);
}

.why-choose-proof-value {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.why-choose-proof-label {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Right: Feature Pills */
.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-choose-feature-pill {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.03),
        0 2px 4px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.why-choose-feature-pill::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(87, 0, 153, 0.06);
    transition: width 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-feature-pill:hover,
.why-choose-feature-pill.active {
    background: rgba(87, 0, 153, 0.02);
    border-color: rgba(87, 0, 153, 0.15);
    box-shadow: 
        0 2px 4px rgba(87, 0, 153, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04);
    transform: translateX(2px);
}

.why-choose-feature-pill.active::before {
    width: 3px;
}

.why-choose-feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #6b7280;
    transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-feature-pill:hover .why-choose-feature-icon,
.why-choose-feature-pill.active .why-choose-feature-icon {
    color: #570099;
    transform: scale(1.05);
}

.why-choose-feature-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.why-choose-feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-choose-feature-title {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-feature-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.why-choose-feature-pill:hover .why-choose-feature-title,
.why-choose-feature-pill.active .why-choose-feature-title {
    color: #570099;
}

.why-choose-feature-pill:hover .why-choose-feature-subtitle,
.why-choose-feature-pill.active .why-choose-feature-subtitle {
    color: #4b5563;
}

/* Animation States */
.why-choose-spotlight-title.animating-out,
.why-choose-spotlight-description.animating-out {
    opacity: 0;
    transform: translateY(-10px);
}

.why-choose-spotlight-title.animating-in,
.why-choose-spotlight-description.animating-in {
    opacity: 0;
    transform: translateY(10px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-interactive-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-spotlight-card {
        min-height: 450px;
        padding: 40px 32px;
    }

    .why-choose-features {
        flex-direction: row;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
    }

    .why-choose-features::-webkit-scrollbar {
        height: 6px;
    }

    .why-choose-features::-webkit-scrollbar-track {
        background: transparent;
    }

    .why-choose-features::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.15);
        border-radius: 3px;
    }

    .why-choose-feature-pill {
        min-width: 240px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-subtitle {
        margin-bottom: 50px;
    }

    .why-choose-spotlight-card {
        padding: 32px 24px;
        min-height: 400px;
    }

    .why-choose-spotlight-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .why-choose-spotlight-description {
        font-size: 17px;
    }

    .why-choose-proof-chip {
        min-width: 100%;
    }

    .why-choose-feature-pill {
        padding: 18px 20px;
        min-width: 220px;
    }

    .why-choose-feature-title {
        font-size: 16px;
    }

    .why-choose-feature-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .why-choose-spotlight-card {
        padding: 24px 20px;
        min-height: 360px;
    }

    .why-choose-spotlight-content {
        margin-bottom: 32px;
        min-height: 120px;
    }

    .why-choose-proof-area {
        min-height: 160px;
    }

    .why-choose-proof-chip {
        padding: 16px 20px;
    }

    .why-choose-proof-value {
        font-size: 18px;
    }

    .why-choose-feature-pill {
        padding: 16px 18px;
        min-width: 200px;
    }
}

/* Core Principles Section */
.core-principles-section {
    padding: 100px 0;
    background: #fafbfc;
    position: relative;
}

.core-principles-title {
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: 'Satoshi';;
}

.core-principles-subtitle {
    font-size: 18px;
    color: #6B7280;
    text-align: center;
    margin: 0 0 80px 0;
    font-weight: 400;
    line-height: 1.6;
}

.core-principles-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

/* Principle Row - Staggered Layout */
.core-principle-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
}

/* Staggered positioning */
.core-principle-row[data-principle="1"] {
    margin-left: 0;
}

.core-principle-row[data-principle="2"] {
    margin-left: 24px;
}

.core-principle-row[data-principle="3"] {
    margin-left: 48px;
}

.core-principle-row[data-principle="4"] {
    margin-left: 72px;
}

.core-principle-row[data-principle="5"] {
    margin-left: 96px;
}

/* Circular Badge */
.core-principle-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.core-principle-letter {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Satoshi';;
    letter-spacing: -0.02em;
}

/* Badge Colors - Soft Pastels */
.core-principle-badge-1 {
    background: #2D6B8C;
}

.core-principle-badge-2 {
    background: #D98C2D;
}

.core-principle-badge-3 {
    background: #8C3D3D;
}

.core-principle-badge-4 {
    background: #4A6E82;
}

.core-principle-badge-5 {
    background: #2D9D8A;
}

/* Pill-shaped Bar */
.core-principle-content {
    flex: 1;
    position: relative;
    margin-left: -32px;
    padding-left: 48px;
    overflow: hidden;
}

.core-principle-bar {
    height: 64px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    padding: 0 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Bar Colors - Lighter Pastels */
.core-principle-bar-1 {
    background: #74C0E7;
}

.core-principle-bar-2 {
    background: #F9BA7A;
}

.core-principle-bar-3 {
    background: #EC8083;
}

.core-principle-bar-4 {
    background: #678A9C;
}

.core-principle-bar-5 {
    background: #5ACCC1;
}

.core-principle-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
    font-family: 'Satoshi';;
    white-space: nowrap;
}

/* Description - Hidden by default, expands on hover */
.core-principle-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 32px;
    margin-top: 0;
}

.core-principle-description p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    padding-top: 16px;
    font-weight: 400;
}

/* Hover States */
.core-principle-row:hover .core-principle-badge,
.core-principle-row.active .core-principle-badge {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.core-principle-row:hover .core-principle-bar,
.core-principle-row.active .core-principle-bar {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    filter: brightness(0.95);
}

.core-principle-row:hover .core-principle-description,
.core-principle-row.active .core-principle-description {
    max-height: 200px;
    opacity: 1;
    padding: 0 32px;
}

.core-principle-row:hover,
.core-principle-row.active {
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .core-principles-section {
        padding: 60px 0;
    }

    .core-principles-subtitle {
        margin-bottom: 50px;
    }

    .core-principles-list {
        gap: 16px;
    }

    /* Reduce stagger on mobile */
    .core-principle-row[data-principle="1"],
    .core-principle-row[data-principle="2"],
    .core-principle-row[data-principle="3"],
    .core-principle-row[data-principle="4"],
    .core-principle-row[data-principle="5"] {
        margin-left: 0;
    }

    .core-principle-badge {
        width: 56px;
        height: 56px;
    }

    .core-principle-letter {
        font-size: 24px;
    }

    .core-principle-bar {
        height: 56px;
        padding: 0 24px;
    }

    .core-principle-content {
        margin-left: -28px;
        padding-left: 40px;
    }

    .core-principle-title {
        font-size: 18px;
    }

    .core-principle-description {
        padding: 0 24px;
    }

    .core-principle-description p {
        font-size: 15px;
        padding-top: 12px;
    }

    .core-principle-row:hover .core-principle-description,
    .core-principle-row.active .core-principle-description {
        max-height: 180px;
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .core-principle-badge {
        width: 48px;
        height: 48px;
    }

    .core-principle-letter {
        font-size: 20px;
    }

    .core-principle-bar {
        height: 48px;
        padding: 0 20px;
    }

    .core-principle-content {
        margin-left: -24px;
        padding-left: 36px;
    }

    .core-principle-title {
        font-size: 16px;
    }
}

/* Featured & Trusted By Leading Media Section */
.media-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    position: relative;
}

.media-section-title {
    font-size: 52px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.media-section-subtitle {
    font-size: 18px;
    color: #666666;
    text-align: center;
    margin: 0 0 64px 0;
    font-weight: 400;
}

.media-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1500px;
    margin: 0 auto;
}

.media-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.media-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    border-color: rgba(37, 99, 235, 0.15);
}

.media-card:hover::before {
    opacity: 1;
}

.media-card-header {
    padding: 40px 32px 32px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.media-header-entrepreneur {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.media-header-yourstory {
    background: linear-gradient(135deg, rgba(240, 253, 250, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.media-header-theprint {
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.media-card-name {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    margin: 0;
    font-family: 'Satoshi';
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.media-card-body {
    padding: 0 32px 36px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.media-card-headline {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.media-card-description {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

.media-read-more {
    font-size: 15px;
    color: #2563eb;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    padding: 4px 0;
    position: relative;
}

.media-read-more::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.media-read-more:hover {
    color: #1d4ed8;
    gap: 8px;
}

.media-read-more:hover::after {
    width: 100%;
}

.media-read-more svg {
    transition: transform 0.3s ease;
}

.media-read-more:hover svg {
    transform: translateX(2px);
}

.media-read-more span {
    position: relative;
    z-index: 1;
}

/* AI Customization Section */
.ai-section {
    background: linear-gradient(135deg, 
        #e0f2fe 0%, 
        #dbeafe 15%, 
        #e9d5ff 30%, 
        #f3e8ff 50%, 
        #faf5ff 70%, 
        #ffffff 100%);
    padding: 50px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, 
        rgba(59, 130, 246, 0.12) 0%, 
        rgba(139, 92, 246, 0.1) 30%,
        rgba(168, 85, 247, 0.08) 50%,
        transparent 75%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite;
}

.ai-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(99, 102, 241, 0.1) 0%, 
        rgba(139, 92, 246, 0.08) 30%,
        rgba(59, 130, 246, 0.06) 50%,
        transparent 75%);
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    animation: pulseGlow 10s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Left Section - AI Text */
.ai-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 600px;
}

.ai-headline {
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.03em;
    font-family: 'Satoshi'; 
}

.ai-description {
    font-size: 20px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    font-family: 'Satoshi'; 
}

.ai-cta-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn-generate-ai {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: #ffffff;
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35), 0 0 0 0 rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
    font-family: 'Satoshi';
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-generate-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-generate-ai:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.45), 0 0 0 4px rgba(139, 92, 246, 0.15);
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
}

.btn-generate-ai:hover::before {
    left: 100%;
}

.btn-watch-demo {
    background: transparent;
    color: #6366f1;
    border: 1.5px solid #e2e8f0;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Satoshi'; 
}

.btn-watch-demo svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-watch-demo:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #4f46e5;
    transform: translateY(-1px);
}

.btn-watch-demo:hover svg {
    transform: scale(1.1);
}

.ai-trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.trust-indicator-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #475569;
    font-weight: 500;
    font-family: 'Satoshi';
}

.trust-indicator-item svg {
    flex-shrink: 0;
}

/* Right Section - AI Mockups */
.ai-right {
    position: relative;
    height: 700px;
}

.ai-mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* AI section images (section2-bg behind, section-2 on top) */
.ai-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.4;
    mix-blend-mode: soft-light;
    filter: blur(20px) brightness(1.1) saturate(0.8);
    transform: scale(1.1);
    pointer-events: none;
}

.ai-mockup-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        transparent 50%,
        rgba(139, 92, 246, 0.05) 70%,
        rgba(59, 130, 246, 0.08) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 24px;
}

.ai-mockup-container::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, 
        rgba(139, 92, 246, 0.15) 0%, 
        rgba(99, 102, 241, 0.1) 30%,
        rgba(59, 130, 246, 0.08) 50%,
        transparent 80%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

.ai-hero-image {
    position: relative;
    z-index: 2;
    width: min(860px, 100%);
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    filter: 
        drop-shadow(0 40px 100px rgba(15, 23, 42, 0.15))
        drop-shadow(0 0 60px rgba(139, 92, 246, 0.1));
    mix-blend-mode: normal;
    opacity: 1;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-hero-image:hover {
    transform: translateY(-5px) scale(1.02);
}

@media (max-width: 1200px) {
    .ai-right {
        height: 560px;
    }
    .ai-hero-image {
        width: min(720px, 100%);
    }
    .ai-bg-image {
        opacity: 0.35;
        filter: blur(15px) brightness(1.15) saturate(0.7);
    }
}

@media (max-width: 768px) {
    /* AI section: reduce heavy glow animations on mobile (prevents scroll stutter) */
    .ai-section {
        /* Allow section to grow naturally on mobile (prevents text clipping) */
        display: block;
        align-items: initial;
        /* overflow: visible;
         */
        /* Prevent fixed header from covering heading when scrolling */
        scroll-margin-top: 88px;
        padding-top: 88px;
        /* Avoid scroll jank from will-change on sections */
        will-change: auto;
        height: max-content;
    }

    /* Ensure AI content is visible and not clipped by JS animations on mobile */
    .ai-left,
    .ai-right {
        opacity: 1;
        transform: none;
    }

    .ai-section::before,
    .ai-section::after {
        animation: none;
        filter: blur(40px);
        opacity: 0.35;
        transform: none;
        pointer-events: none;
    }

    .ai-right,
    .ai-section .ai-right {
        /* Avoid fixed heights on mobile which can cause scroll "sticking" (override 1200px rule) */
        height: auto;
        overflow: visible;
    }
    .ai-mockup-container {
        overflow: visible;
        min-height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 8px;
    }
    .ai-bg-image {
        transform: none;
        opacity: 0.3;
        filter: blur(12px) brightness(1.2) saturate(0.6);
        object-fit: contain;
        object-position: center;
    }
    /* AI section image: full image visible on mobile, no cropping; prioritize left content (workflow nodes) */
    .ai-hero-image {
        transform: none !important;
        width: 100%;
        max-width: 100%;
        max-height: none;
        object-fit: contain;
        object-position: left center;
        display: block;
        margin: 0 auto;
        filter: 
            drop-shadow(0 30px 60px rgba(15, 23, 42, 0.12))
            drop-shadow(0 0 40px rgba(139, 92, 246, 0.08));
    }
    .ai-mockup-container::before {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.4) 0%,
            rgba(255, 255, 255, 0.15) 40%,
            transparent 60%);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        padding: 60px 0 80px;
    }

    .about-hero-section {
        padding: 48px 0 64px;
    }

    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-hero-left {
        max-width: 100%;
    }

    .about-hero-headline {
        font-size: 42px;
    }

    .about-hero-right {
        order: -1;
    }

    .about-hero-visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-headline {
        font-size: 52px;
    }

    .hero-right {
        height: 550px;
        order: -1;
    }

    .floating-card {
        display: none;
    }

    .hero-about-image {
        max-width: 650px;
        max-height: 600px;
    }

    .hero-cta-buttons {
        flex-wrap: wrap;
    }

    /* Removed unused laptop/phone mockup demo styles */
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    /* Mobile Hero Section - Premium Fixes */
    .hero-section {
        min-height: auto;
        padding: 40px 0 50px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .about-hero-section {
        padding: 40px 0 56px;
    }

    .about-hero-content {
        gap: 40px;
    }

    .about-hero-headline {
        font-size: 34px;
        line-height: 1.2;
    }

    .about-hero-subtext {
        font-size: 17px;
    }

    .about-hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        justify-content: center;
    }

    .about-hero-trust {
        justify-content: center;
        padding-top: 16px;
    }

    .about-hero-left {
        text-align: center;
    }

    .about-hero-label {
        text-align: center;
    }

    .about-hero-right {
        order: -1;
    }

    .about-hero-section .hero-about-image {
        max-height: 380px;
    }

    .hero-background {
        overflow: hidden;
    }

    /* Soft gradient overlay for better text readability - using hero-section::before */
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.3) 25%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.05) 75%,
            transparent 100%
        );
        z-index: 1;
        pointer-events: none;
    }

    /* Reduce blob animations on mobile for smoother experience */
    .hero-background::before,
    .hero-background::after {
        opacity: 0.25;
        filter: blur(50px);
        animation-duration: 20s;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        padding: 20px 0;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .hero-left {
        text-align: center;
        max-width: 100%;
        width: 100%;
        opacity: 1;
        animation: fadeUpMobile 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        will-change: transform, opacity;
    }

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

    .hero-left::before {
        display: none;
    }

    .hero-right {
        height: auto;
        min-height: 300px;
        max-height: 400px;
        order: 1;
        opacity: 1;
        animation: fadeUpMobile 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
        will-change: transform, opacity;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .mockup-container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .mockup-wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .dashboard-mockup {
        transform: scale(0.95) translateY(0) !important;
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        transition: transform 0.3s ease;
        will-change: transform;
        /* Improved blending with background */
        mix-blend-mode: normal;
        filter: 
            drop-shadow(0 20px 60px rgba(37, 99, 235, 0.2))
            drop-shadow(0 10px 30px rgba(99, 102, 241, 0.15))
            drop-shadow(0 0 20px rgba(139, 92, 246, 0.1));
        /* Smooth gradient fade at bottom for better blend */
        mask-image: 
            linear-gradient(to bottom, 
                black 0%, 
                black 75%, 
                rgba(0, 0, 0, 0.9) 88%,
                rgba(0, 0, 0, 0.7) 94%,
                rgba(0, 0, 0, 0.3) 98%,
                transparent 100%);
        -webkit-mask-image: 
            linear-gradient(to bottom, 
                black 0%, 
                black 75%, 
                rgba(0, 0, 0, 0.9) 88%,
                rgba(0, 0, 0, 0.7) 94%,
                rgba(0, 0, 0, 0.3) 98%,
                transparent 100%);
        /* Ensure proper alignment */
        margin: 0 auto;
        display: block;
    }

    .hero-headline {
        font-size: 36px;
        line-height: 1.25;
        letter-spacing: -0.02em;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .hero-eyebrow {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 24px;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }

    .hero-trust-text {
        margin-top: 16px;
        font-size: 13px;
    }

    /* Smooth scrolling and section spacing improvements */
    body {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }

    /* Ensure sections stack smoothly with consistent spacing */
    .marquee-section {
        margin-bottom: 0;
        padding: 0;
    }

    .ai-section,
    .performance-section,
    .features-section,
    .automation-section,
    .themes-section,
    .selling-section,
    .testimonials-section {
        margin-bottom: 0;
        padding-top: 50px;
        padding-bottom: 50px;
        overflow-x: hidden;
    }

    /* Prevent content from appearing suddenly - smooth transitions (no will-change to avoid scroll jank) */
    section {
        opacity: 1;
        transition: opacity 0.3s ease, transform 0.3s ease;
        will-change: auto;
    }

    /* Removed unused laptop/phone/floating-card demo overrides */

    /* AI Section Responsive */
    .ai-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ai-headline {
        font-size: 36px;
    }

    .ai-right {
        height: 280px;
    }

}

/* Performance Section */
.performance-section {
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #fafbfc 30%,
        #f8fafc 50%, 
        #f1f5f9 70%,
        #eef2f6 100%);
    padding: 50px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.performance-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 120px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left Section - Performance Text */
.performance-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 640px;
    align-self: start;
    padding-top: 8px;
    position: relative;
    z-index: 1;
}

.performance-headline {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.12;
    margin: 0;
    letter-spacing: -0.04em;
    font-family: 'Satoshi'; 
}

.performance-subheading {
    font-size: 19px;
    color: #475569;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
    font-family: 'Satoshi'; 
    letter-spacing: -0.01em;
}

.performance-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    font-family: 'Satoshi'; 
    letter-spacing: -0.01em;
}

.btn-launch-store {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    border: none;
    padding: 20px 40px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.4), 0 0 0 0 rgba(99, 102, 241, 0.3);
    font-family: 'Satoshi'; 
    margin-top: 4px;
    position: relative;
    overflow: hidden;
}

.btn-launch-store::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-launch-store:hover::before {
    left: 100%;
}

.btn-launch-store:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5), 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.performance-trust-text {
    font-size: 14px;
    color: #94a3b8;
    margin: 12px 0 0 0;
    font-weight: 500;
    font-family: 'Satoshi'; 
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Right Section - Cards Grid */
.performance-right {
    width: 100%;
    align-self: start;
    position: relative;
    z-index: 1;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    grid-template-rows: repeat(2, 1fr);
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.cards-grid .info-card {
    min-height: 260px;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
    position: relative;
    overflow: hidden;
    align-items: flex-start;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 24px 72px rgba(0, 0, 0, 0.14),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.info-card:hover::before {
    opacity: 1;
}

.card-featured {
    grid-row: 1;
    grid-column: 1;
    min-height: auto;
    height: 100%;
    align-self: stretch;
    margin-bottom: 0;
    padding: 24px;
    transform: none;
    z-index: 1;
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-featured:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 24px 72px rgba(0, 0, 0, 0.14),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Card Background Colors with Glassmorphism */
.card-enterprise {
    background: linear-gradient(135deg, 
        rgba(254, 215, 170, 0.45) 0%, 
        rgba(253, 186, 116, 0.4) 50%,
        rgba(251, 146, 60, 0.35) 100%);
}

.card-enterprise::before {
    background: linear-gradient(135deg, 
        rgba(254, 215, 170, 0.65) 0%, 
        rgba(253, 186, 116, 0.6) 50%,
        rgba(251, 146, 60, 0.55) 100%);
}

.card-nocode {
    background: linear-gradient(135deg, 
        rgba(254, 205, 211, 0.45) 0%, 
        rgba(253, 164, 175, 0.4) 50%,
        rgba(251, 113, 133, 0.35) 100%);
    grid-row: 1;
    grid-column: 2;
    align-self: stretch;
}

.card-nocode::before {
    background: linear-gradient(135deg, 
        rgba(254, 205, 211, 0.65) 0%, 
        rgba(253, 164, 175, 0.6) 50%,
        rgba(251, 113, 133, 0.55) 100%);
}

.card-proplus {
    background: linear-gradient(135deg, 
        rgba(186, 230, 253, 0.45) 0%, 
        rgba(125, 211, 252, 0.4) 50%,
        rgba(56, 189, 248, 0.35) 100%);
    grid-row: 2;
    grid-column: 1;
    align-self: stretch;
}

.card-proplus::before {
    background: linear-gradient(135deg, 
        rgba(186, 230, 253, 0.65) 0%, 
        rgba(125, 211, 252, 0.6) 50%,
        rgba(56, 189, 248, 0.55) 100%);
}

.card-retail {
    background: linear-gradient(135deg, 
        rgba(254, 240, 138, 0.45) 0%, 
        rgba(253, 224, 71, 0.4) 50%,
        rgba(250, 204, 21, 0.35) 100%);
    grid-row: 2;
    grid-column: 2;
    align-self: stretch;
}

.card-retail::before {
    background: linear-gradient(135deg, 
        rgba(254, 240, 138, 0.65) 0%, 
        rgba(253, 224, 71, 0.6) 50%,
        rgba(250, 204, 21, 0.55) 100%);
}

.card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(15, 23, 42, 0.12);
    opacity: 0.35;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.info-card:hover .card-icon {
    opacity: 0.5;
}

.card-icon svg {
    width: 20px;
    height: 20px;
}

.card-title {
    font-size: 10px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 10px 0;
    font-family: 'Satoshi'; 
    opacity: 0.75;
}

.card-metric {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.card-percentage {
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin: 0;
    font-family: 'Satoshi'; 
    letter-spacing: -0.05em;
}

.card-featured .card-percentage {
    font-size: 56px;
}

.card-metric-label {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    font-family: 'Satoshi'; 
    opacity: 0.95;
    letter-spacing: -0.01em;
}

.card-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(15, 23, 42, 0.12) 50%, 
        transparent 100%);
    margin: 6px 0 10px 0;
}

.card-description {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    font-family: 'Satoshi'; 
    min-height: 0;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.card-featured .card-description {
    font-size: 13px;
    line-height: 1.6;
}

.card-cta {
    background: rgba(255, 255, 255, 0.6);
    color: #6366f1;
    border: 1.5px solid rgba(99, 102, 241, 0.25);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Satoshi'; 
    margin-top: 4px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.card-cta:hover {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.6);
    color: #4f46e5;
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Responsive Design for Performance Section */
@media (max-width: 1200px) {
    .performance-section {
        padding: 100px 0;
    }

    .performance-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .performance-left {
        max-width: 100%;
    }

    .performance-headline {
        font-size: 42px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        grid-template-rows: repeat(2, 1fr);
        align-items: stretch;
    }

    .cards-grid .info-card {
        min-height: 280px;
        height: 100%;
    }

    .card-featured {
        grid-row: 1;
        grid-column: 1;
        min-height: 280px;
        max-height: none;
        transform: none;
        padding: 28px;
    }

    .card-featured:hover {
        transform: translateY(-8px);
    }

    .card-retail {
        grid-row: 2;
        grid-column: 2;
    }

    /* Reset hero image transforms on mobile to avoid overflow/jank */
    .dashboard-mockup {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .performance-section {
        padding: 60px 0;
    }

    .performance-content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: stretch;
    }

    .performance-left {
        max-width: 100%;
        padding-top: 0;
        gap: 24px;
        text-align: left;
    }

    .performance-headline {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.03em;
    }

    .performance-subheading {
        font-size: 16px;
        line-height: 1.6;
    }

    .performance-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .btn-launch-store {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
    }

    .performance-trust-text {
        text-align: center;
        font-size: 13px;
    }

    .performance-right {
        width: 100%;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        grid-auto-rows: auto;
        align-items: stretch;
        width: 100%;
    }

    .info-card {
        padding: 24px;
        min-height: auto;
        height: auto;
        width: 100%;
        margin: 0;
    }

    .cards-grid .info-card {
        min-height: auto;
        height: auto;
    }

    .card-featured {
        min-height: auto;
        height: auto;
        transform: scale(1);
        padding: 24px;
        grid-row: auto;
    }

    .card-featured:hover {
        transform: translateY(-8px);
    }

    .card-nocode,
    .card-proplus,
    .card-retail {
        margin-top: 0;
        grid-row: auto;
        grid-column: auto;
    }

    .card-percentage {
        font-size: 56px;
    }

    .card-featured .card-percentage {
        font-size: 64px;
    }

    .card-metric-label {
        font-size: 13px;
    }

    .card-title {
        font-size: 11px;
    }

    .card-description {
        font-size: 14px;
    }

    .card-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .performance-section {
        padding: 50px 0;
    }

    .performance-content {
        gap: 32px;
    }

    .performance-left {
        gap: 20px;
    }

    .performance-headline {
        font-size: 28px;
        line-height: 1.25;
    }

    .performance-subheading {
        font-size: 15px;
    }

    .performance-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .btn-launch-store {
        padding: 16px 28px;
        font-size: 15px;
    }

    .performance-trust-text {
        font-size: 12px;
    }

    .cards-grid {
        gap: 16px;
    }

    .info-card {
        padding: 20px;
    }

    .card-featured {
        padding: 20px;
    }

    .card-percentage {
        font-size: 48px;
    }

    .card-featured .card-percentage {
        font-size: 56px;
    }

    .card-metric-label {
        font-size: 12px;
    }

    .card-title {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .card-description {
        font-size: 13px;
        line-height: 1.65;
    }

    .card-cta {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.features-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
    align-items: start;
}

.features-headline-left {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.03em;
    font-family: 'Satoshi'; 
}

.features-headline-right {
    font-size: 20px;
    font-weight: 400;
    color: #475569;
    line-height: 1.7;
    margin: 0;
    font-family: 'Satoshi'; 
}

/* Features Cards */
.features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    align-items: start;
}

.feature-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.03) 0%, 
        rgba(139, 92, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .feature-title {
    color: #6366f1;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-card-elevated {
    transform: translateY(-12px);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(99, 102, 241, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.feature-card-elevated:hover {
    transform: translateY(-16px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.14),
        0 0 0 1px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.feature-title-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon-launch {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%);
    color: #2563eb;
}

.feature-icon-customize {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.08) 100%);
    color: #8b5cf6;
}

.feature-icon-scale {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.08) 100%);
    color: #10b981;
}

.feature-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-visual {
    width: 100%;
    height: 240px;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
    padding: 20px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.feature-3d-mockup {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.feature-card:hover .feature-3d-mockup {
    transform: scale(1.02);
}

.feature-stat-image {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.feature-card:hover .feature-stat-image {
    transform: scale(1.02);
}

/* Shopping Cart Visual for Card 1 */
.shopping-cart-visual {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.cart-bag {
    width: 40px;
    height: 50px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.bag-1 {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.bag-2 {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.bag-3 {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* Responsive Devices Visual for Card 2 */
.responsive-devices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.device {
    background: #e5e7eb;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.device-screen {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.device-content {
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
}

.green-bg {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.device-desktop {
    width: 120px;
    height: 80px;
    padding: 8px;
}

.device-desktop .device-screen {
    width: 100%;
    height: 100%;
}

.device-laptop {
    width: 100px;
    height: 70px;
    padding: 6px;
}

.device-laptop .device-screen {
    width: 100%;
    height: 100%;
}

.device-tablet {
    width: 70px;
    height: 90px;
    padding: 6px;
}

.device-tablet .device-screen {
    width: 100%;
    height: 100%;
}

.device-phone {
    width: 50px;
    height: 90px;
    padding: 4px;
}

.device-phone .device-screen {
    width: 100%;
    height: 100%;
}

.device-phone .device-content {
    font-size: 8px;
    padding: 6px 8px;
}

/* Analytics Dashboard Visual for Card 3 */
.analytics-dashboard {
    width: 100%;
    height: 100%;
    background: #1f2937;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-header {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 8px;
}

.dashboard-title {
    font-size: 12px;
    font-weight: 700;
    color: #1f2937;
}

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

.metric-box {
    background: #f9fafb;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
}

.metric-value {
    font-size: 20px;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 9px;
    color: #6b7280;
    font-weight: 500;
}

.dashboard-charts {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 60px;
    margin-top: auto;
}

.chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

.chart-1 {
    height: 80%;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
}

.chart-2 {
    height: 60%;
    background: #e5e7eb;
}

.chart-3 {
    height: 40%;
    background: #e5e7eb;
}

.chart-pie {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pie-1 {
    background: conic-gradient(#ef4444 0% 40%, #e5e7eb 40% 100%);
}

.pie-2 {
    background: conic-gradient(#3b82f6 0% 60%, #e5e7eb 60% 100%);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease-in-out;
    font-family: 'Satoshi'; 
    letter-spacing: -0.01em;
}

.feature-description {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    margin: 0;
    font-weight: 400;
    font-family: 'Satoshi'; 
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.feature-description p {
    margin: 0;
}

.feature-card-cta {
    background: transparent;
    color: #6366f1;
    border: 1.5px solid rgba(99, 102, 241, 0.3);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Satoshi'; 
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-card-cta:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
    color: #4f46e5;
    transform: translateX(4px);
}

.features-cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.btn-features-primary {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
    font-family: 'Satoshi';
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-features-primary:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.45);
}

.btn-features-primary .arrow-icon {
    transition: transform 0.3s ease;
}

.btn-features-primary:hover .arrow-icon {
    transform: translateX(4px);
}

/* Responsive Design for Features Section */
@media (max-width: 1200px) {
    .features-section {
        padding: 100px 0;
    }

    .features-header {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .features-headline-left {
        font-size: 42px;
    }

    .features-headline-right {
        font-size: 18px;
    }

    .features-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        align-items: start;
    }
    
    .feature-card-elevated {
        transform: translateY(0);
    }

    .feature-card-elevated:hover {
        transform: translateY(-8px);
    }
    
    .feature-visual {
        height: 220px;
    }
    
    .feature-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px 0;
    }

    .features-header {
        margin-bottom: 60px;
        gap: 32px;
    }

    .features-headline-left {
        font-size: 36px;
    }

    .features-headline-right {
        font-size: 16px;
    }

    .features-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: stretch;
        margin-bottom: 60px;
    }

    .feature-card-elevated {
        transform: translateY(0);
    }

    .feature-visual {
        height: 200px;
    }

    .feature-card {
        padding: 28px;
    }
    
    .feature-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .feature-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-title-wrapper {
        gap: 12px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 14px;
    }

    .features-cta-section {
        margin-top: 40px;
    }
}

/* Facebook Instagram Automation Section */
.automation-section {
    background-color: #ffffff;
    padding: 50px 0;
}

/* Top Section - Text and Navigation */
.automation-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.automation-top-left {
    display: flex;
    align-items: center;
}

.automation-intro {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0;
}

.automation-top-right {
    display: flex;
    align-items: center;
}

.automation-top-description {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Navigation Bar */
.automation-nav-bar {
    display: flex;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 50%, #e9ecef 100%);
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 40px;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    opacity: 0.7;
}

.nav-tab:hover {
    color: #1f2937;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.nav-tab.active {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 50%, #6b21a8 100%);
    color: #ffffff;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(147, 51, 234, 0.25);
}

.nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: underlineSlide 0.3s ease;
}

@keyframes underlineSlide {
    from {
        width: 0;
    }
    to {
        width: 60%;
    }
}

/* Main Content Card */
.automation-card {
    background: radial-gradient(ellipse at top right, rgba(233, 213, 255, 0.8) 0%, rgba(221, 214, 254, 0.6) 40%, rgba(196, 181, 253, 0.4) 100%);
    border-radius: 24px;
    /* border-top-right-radius: 120px;
    border-bottom-left-radius: 120px; */
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
    min-height: auto;
}

.automation-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.automation-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.automation-card-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Tab Content */
.tab-content {
    display: none !important;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    visibility: hidden;
}

.tab-content.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    animation: fadeIn 0.5s ease;
}

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

/* Left Section - Automation Text (Inside Card) */
.automation-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
}

/* Feature Badge */
.automation-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #9333ea;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 8px;
}

.automation-headline {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.automation-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 540px;
    margin-top: 8px;
}

.btn-get-started-automation {
    background: linear-gradient(135deg, #570099 0%, #020241 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    gap: 8px;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(87, 0, 153, 0.3);
}

.btn-get-started-automation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-get-started-automation:hover::before {
    left: 100%;
}

.btn-get-started-automation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(87, 0, 153, 0.5), 0 0 20px rgba(147, 51, 234, 0.4);
}

.btn-get-started-automation:hover .arrow-icon {
    transform: translateX(4px);
}

.btn-get-started-automation .arrow-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Right Section - Automation Visual */
.automation-right {
    position: relative;
    height: 450px;
    z-index: 3;
}

/* Automation Tab Images - Product Style UI Mockup */
.automation-image-container {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    transition: transform 0.3s ease;
}


/* .automation-image-container::before {
    content: '● ● ●';
    position: absolute;
    top: 16px;
    left: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 8px;
    z-index: 2;
    font-family: system-ui, -apple-system, sans-serif;
} */

.automation-tab-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 16px;
    /* opacity: 0.15;
    mix-blend-mode: overlay; */
}

/* For tabs with existing visual containers, keep them on top */
.automation-right .seo-visual-container,
.automation-right .chatbot-visual-container,
.automation-right .automation-visual-container {
    position: relative;
    z-index: 2;
}

/* For tabs with just images - make them full visible */
.automation-right:has(.automation-image-container:only-child) .automation-image-container {
    position: relative;
    opacity: 1;
    min-height: 380px;
}


.automation-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #374151;
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    min-height: 350px;
}

/* Woman with Laptop */
.woman-laptop {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 300px;
    height: 400px;
}

.woman-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Facebook Post Mockup */
.facebook-post-mockup {
    position: absolute;
    left: 40px;
    top: 60px;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    width: 320px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.post-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.post-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-logo {
    font-size: 20px;
    font-weight: 700;
    color: #1877f2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.search-icon {
    font-size: 16px;
    color: #6b7280;
}

.post-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    flex-shrink: 0;
}

.profile-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.post-image-container {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.post-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.post-engagement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.engagement-icons {
    display: flex;
    gap: 12px;
}

.icon-like,
.icon-comment,
.icon-share {
    font-size: 18px;
    cursor: pointer;
}

.engagement-numbers {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

/* Calendar Widget */
.calendar-widget {
    position: absolute;
    left: 60px;
    bottom: 80px;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.calendar-month {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
}

.calendar-year {
    font-size: 14px;
    font-weight: 700;
    color: #ef4444;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 12px;
}

.calendar-weekdays span {
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
    text-transform: uppercase;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-dates span {
    font-size: 12px;
    color: #1f2937;
    text-align: center;
    padding: 6px;
    border-radius: 4px;
    font-weight: 500;
}

.calendar-dates .saturday {
    color: #ef4444;
    font-weight: 700;
}

/* SEO Tools Dashboard */
.seo-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.man-laptop {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 400px;
    flex-shrink: 0;
}

.man-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.seo-dashboard {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 3;
    flex-shrink: 0;
}

.dashboard-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.dashboard-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-header {
    margin-bottom: 8px;
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.section-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.item-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.progress-container {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-seo {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.dashboard-graph {
    margin-top: 8px;
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.graph-title {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.graph-period {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

.graph-container {
    position: relative;
    height: 200px;
    display: flex;
    gap: 12px;
}

.graph-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 10px;
    color: #9ca3af;
    font-weight: 500;
    min-width: 30px;
}

.graph-chart {
    flex: 1;
    position: relative;
    height: 100%;
}

.line-chart {
    width: 100%;
    height: 100%;
}

/* Chatbot Integration Visual */
.chatbot-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.chatbot-integration-graphic {
    position: relative;
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    border: 2px solid #3b82f6;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 600px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.integration-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 30px 0;
    text-align: center;
}

/* Chat Window */
.chat-window {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
    position: relative;
}

.chat-header {
    background: #f3f4f6;
    padding: 12px 16px;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.bot-icon {
    font-size: 20px;
}

.bot-name {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

.chat-messages {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 200px;
}

.bot-message {
    background: #f3f4f6;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    color: #1f2937;
    line-height: 1.5;
    max-width: 80%;
}

.chat-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-btn {
    background: #1e40af;
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
}

.chat-btn:hover {
    background: #2563eb;
}

.chat-option {
    color: #3b82f6;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
}

.chat-input {
    padding: 12px 16px;
    border-top: 1px solid #e5e7eb;
}

.chat-input input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    outline: none;
}

/* Social Integration Icons */
.social-integration-icon {
    position: absolute;
    z-index: 5;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1877f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.icon-circle.instagram-bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.icon-circle.twitter-bg {
    background: #1da1f2;
}

.icon-circle.whatsapp-bg {
    background: #25d366;
}

.icon-circle.messenger-bg {
    background: #0084ff;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 2px;
    border-top: 2px dashed #3b82f6;
    transform-origin: left center;
    z-index: 1;
}

.icon-facebook .connection-line {
    transform: translate(-50%, -50%) rotate(45deg);
    width: 150px;
}

.icon-instagram .connection-line {
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 150px;
}

.icon-twitter .connection-line {
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 120px;
}

.icon-whatsapp .connection-line {
    transform: translate(-50%, -50%) rotate(135deg);
    width: 150px;
}

.icon-messenger .connection-line {
    transform: translate(-50%, -50%) rotate(-135deg);
    width: 150px;
}

/* Man with Smartphone */
.man-smartphone {
    position: relative;
    z-index: 6;
    width: 250px;
    height: 400px;
    flex-shrink: 0;
}

.man-phone-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Marketing Visual Container */
.marketing-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fcd34d;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.marketing-man-laptop {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 400px;
    flex-shrink: 0;
}

.marketing-man-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Marketing Strategy Dashboard */
.marketing-dashboard {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 3;
    flex-shrink: 0;
}

.marketing-dashboard-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.marketing-dashboard-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.marketing-dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Spending Section */
.spending-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spending-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.spending-amount {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rupee-icon {
    font-size: 18px;
    color: #ef4444;
    font-weight: 700;
}

.amount-value {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

/* Pie Chart Section */
.pie-chart-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pie-chart-container {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.pie-chart {
    width: 100%;
    height: 100%;
}

.pie-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
}

.legend-label {
    font-size: 12px;
    color: #1f2937;
    font-weight: 500;
}

/* Growth Section */
.growth-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.growth-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.growth-value {
    display: flex;
    align-items: center;
    gap: 4px;
}

.growth-amount {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.growth-arrow {
    font-size: 18px;
    color: #10b981;
    font-weight: 700;
}

/* Line Chart Section */
.line-chart-section {
    margin-top: 8px;
}

.line-chart-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chart-wrapper {
    display: flex;
    gap: 8px;
    height: 120px;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 10px;
    color: #9ca3af;
    font-weight: 500;
    min-width: 35px;
    text-align: right;
    padding-right: 8px;
}

.chart-area {
    flex: 1;
    position: relative;
    height: 120px;
}

.marketing-line-chart {
    width: 100%;
    height: 100%;
}

.chart-x-axis {
    display: flex;
    justify-content: space-around;
    margin-left: 43px;
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
    margin-top: 4px;
}

/* Analytics Visual Container */
.analytics-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #22c55e;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.analytics-woman-laptop {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 400px;
    flex-shrink: 0;
    order: 2;
}

.analytics-woman-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Analytics Dashboard Card */
.analytics-dashboard-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 3;
    flex-shrink: 0;
    overflow: hidden;
    order: 1;
    margin-right: -50px;
}

.analytics-top-section {
    background: #1f2937;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.analytics-bottom-section {
    background: #ffffff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.analytics-metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-label {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.analytics-top-section .metric-label {
    color: #9ca3af;
}

.analytics-bottom-section .metric-label {
    color: #6b7280;
}

.metric-value-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.analytics-bottom-section .metric-value {
    color: #1f2937;
}

.metric-value-large {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 2px;
}

.rupee-symbol {
    font-size: 18px;
    color: #1f2937;
    font-weight: 700;
}

.metric-indicator {
    font-size: 14px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.metric-indicator.increase {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.metric-indicator.decrease {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Responsive Design for SEO Features */
@media (max-width: 1200px) {
    .seo-features-grid {
        gap: 24px;
    }

    .feature-card {
        padding: 32px;
        min-height: 300px;
    }

    .feature-content {
        gap: 32px;
    }
}

@media (max-width: 968px) {
    .seo-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-right {
        min-height: 180px;
        height: auto;
    }

    .glass-card {
        position: relative;
        margin-bottom: 16px;
    }

    .glass-card-1,
    .glass-card-2,
    .glass-card-3,
    .glass-card-4,
    .glass-card-5 {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 16px;
    }
}

/* Responsive Design for Automation Section */
@media (max-width: 1200px) {
    .automation-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .automation-headline {
        font-size: 40px;
    }

    .automation-right {
        height: 500px;
    }

    .woman-laptop {
        width: 250px;
        height: 350px;
        right: 20px;
    }

    .facebook-post-mockup {
        width: 280px;
        left: 20px;
    }

    .calendar-widget {
        width: 240px;
        left: 40px;
        bottom: 60px;
    }
}

@media (max-width: 768px) {
    .automation-section {
        padding: 80px 0;
    }

    .automation-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .automation-intro {
        font-size: 24px;
    }

    .automation-nav-bar {
        flex-wrap: nowrap;
        gap: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .automation-nav-bar::-webkit-scrollbar {
        display: none;
    }

    .nav-tab {
        flex: 0 0 auto;
        min-width: fit-content;
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 12px;
    }

    .automation-card {
        padding: 32px 24px 28px;
    }

    .automation-card-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .automation-headline {
        font-size: 32px;
    }

    .automation-description {
        font-size: 16px;
    }

    .automation-right {
        height: 350px;
    }

    .automation-image-container {
        position: relative;
        height: auto;
        min-height: 300px;
        max-height: 400px;
        overflow: visible;
    }

    .automation-tab-image {
        object-fit: contain;
        object-position: top center;
        height: auto;
        max-height: 400px;
        width: 100%;
        display: block;
    }

    .automation-visual-container {
        padding: 20px;
        min-height: 400px;
    }

    .woman-laptop {
        width: 180px;
        height: 250px;
        right: 10px;
    }

    .facebook-post-mockup {
        width: 240px;
        left: 10px;
        top: 40px;
    }

    .calendar-widget {
        width: 200px;
        left: 20px;
        bottom: 40px;
    }
}

/* Mobile Automation Image Fixes - 480px and below */
@media (max-width: 480px) {
    .automation-card {
        padding: 28px 20px 24px;
    }

    .automation-card-content {
        gap: 28px;
    }

    .automation-right {
        height: auto;
        min-height: 180px;
    }

    .automation-image-container {
        position: relative;
        height: auto;
        min-height: 280px;
        max-height: 350px;
        overflow: visible;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .automation-tab-image {
        object-fit: contain;
        object-position: top center;
        height: auto;
        max-height: 350px;
        width: 100%;
        display: block;
    }

    .automation-right:has(.automation-image-container:only-child) .automation-image-container {
        min-height: 165px;
        max-height: 350px;
    }
}

/* Themes Section */
.themes-section {
    background-color: #fafafa;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.themes-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Left Section - Themes Text */
.themes-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.themes-left::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -80px;
    width: 520px;
    height: 380px;
    border-radius: 999px;
    background:
        radial-gradient(closest-side at 35% 35%, rgba(87, 0, 153, 0.18), transparent 70%),
        radial-gradient(closest-side at 70% 65%, rgba(37, 99, 235, 0.16), transparent 72%);
    filter: blur(28px);
    opacity: 0.55; /* ~8–12% visual weight */
    z-index: -1;
    pointer-events: none;
}

.themes-headline,
.themes-description {
    max-width: 560px;
}

.themes-button-container {
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.themes-headline {
    font-size: 48px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin: 0;
}

.btn-explore-themes {
    background: #570099;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    box-shadow: 0 10px 26px rgba(87, 0, 153, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-explore-themes:hover {
    background-color: #4b0085;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(87, 0, 153, 0.22);
}

/* Trust Stats (Left Only) */
.themes-trust-stats {
    display: grid;
    /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
    gap: 14px 28px;
    align-items: start;
    max-width: 560px;
    margin-top: 6px;
}

/* List style for themes trust points */
.themes-trust-list {
    list-style: disc;
    list-style-position: inside;
    padding-left: 0.5em;
    margin: 0;
}

.themes-trust-list .themes-stat {
    display: list-item;
    margin-bottom: 6px;
    padding-left: 0.15em;
}

.themes-trust-list .themes-stat:last-child {
    margin-bottom: 0;
}

.themes-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.themes-stat-text strong {
    color: #374151;
    font-weight: 700;
}

/* Optional: custom bullet (disc) color – use ::marker for list bullets */
.themes-trust-list .themes-stat::marker {
    color: rgba(87, 0, 153, 0.85);
}

/* Right Section - Animated Theme Marquee */
.themes-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.themes-description {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Marquee Container */
.themes-marquee-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
    position: relative;
}

/* Marquee Row */
.marquee-row {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Marquee Content */
.marquee-content {
    display: flex;
    gap: 36px;
    width: fit-content;
    animation: marquee-scroll 40s linear infinite;
    will-change: transform;
}

.marquee-content-reverse {
    animation: marquee-scroll-reverse 40s linear infinite;
}

/* Theme Card */
.theme-card {
    flex-shrink: 0;
    width: 270px;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.theme-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Marquee Animations */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.phone-frame {
    width: 200px;
    height: 400px;
    background: #000000;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.theme-content {
    width: 100%;
    height: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Theme 1 - Smart Watch */
.theme-1 {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.theme-smartwatch {
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.watch-display {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.watch-time {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.theme-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    text-align: center;
}

.theme-btn {
    background-color: #ffffff;
    color: #1e40af;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s ease;
}

.theme-btn:hover {
    transform: scale(1.05);
}

/* Theme 2 - Women Fashion */
.theme-2 {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.theme-fashion {
    justify-content: space-between;
}

.fashion-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 8px;
    position: relative;
}

.fashion-image::before {
    content: '👓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
}

.theme-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.theme-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.theme-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-fashion .theme-text h3 {
    color: #ffffff;
    margin-bottom: 16px;
}

/* Theme 3 - Modern Sneaker */
.theme-3 {
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
}

.theme-sneaker {
    justify-content: space-between;
}

.sneaker-image {
    width: 100%;
    height: 200px;
    background: #ffffff;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sneaker-image::before {
    content: '👟';
    font-size: 64px;
}

.theme-sneaker .theme-text h3 {
    color: #1f2937;
    margin-bottom: 16px;
}

.theme-sneaker .theme-btn {
    background-color: #1e40af;
    color: #ffffff;
}

/* Theme 4 - Men Fashion */
.theme-4 {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.theme-men-fashion {
    justify-content: space-between;
}

.men-fashion-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 8px;
    position: relative;
}

.men-fashion-image::before {
    content: '👔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
}

.theme-men-fashion .theme-text h3 {
    color: #ffffff;
    margin-bottom: 16px;
}

/* Theme 5 - Luxury Handbag */
.theme-5 {
    background: linear-gradient(135deg, #fef08a 0%, #fde047 100%);
}

.theme-handbag {
    justify-content: space-between;
}

.handbag-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.handbag-image::before {
    content: '👜';
    font-size: 64px;
}

.theme-handbag .theme-text h3 {
    color: #1f2937;
    margin-bottom: 16px;
}

.theme-handbag .theme-btn {
    background-color: #1f2937;
    color: #ffffff;
}

/* Carousel Navigation */
.carousel-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.carousel-btn {
    background-color: #e5e7eb;
    color: #1f2937;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.carousel-btn:hover {
    background-color: #d1d5db;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Responsive Design for Themes Section */
@media (max-width: 1200px) {
    .themes-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .themes-headline {
        font-size: 40px;
    }

    .theme-card {
        width: 240px;
        height: 300px;
    }

    .marquee-content {
        gap: 32px;
        animation-duration: 35s;
    }

    .marquee-content-reverse {
        animation-duration: 35s;
    }
}

@media (max-width: 768px) {
    .themes-section {
        padding: 80px 0;
    }

    .themes-headline {
        font-size: 32px;
    }

    .themes-trust-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .themes-left::before {
        left: -60px;
        width: 440px;
        height: 340px;
        opacity: 0.5;
    }

    .themes-marquee-container {
        gap: 20px;
    }

    .theme-card {
        width: 220px;
        height: 280px;
        border-radius: 16px;
    }

    .marquee-content {
        gap: 28px;
        animation-duration: 30s;
    }

    .marquee-content-reverse {
        animation-duration: 30s;
    }
}

@media (max-width: 480px) {
    .theme-card {
        width: 200px;
        height: 250px;
        border-radius: 14px;
    }

    .marquee-content {
        gap: 24px;
        animation-duration: 25s;
    }

    .marquee-content-reverse {
        animation-duration: 25s;
    }
}

/* Pricing Section */
/* Pricing Section - Premium Redesign */
.pricing-section {
    background-color: #ffffff;
    padding: 40px 0 30px;
    position: relative;
}

.pricing-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.pricing-label {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.pricing-headline {
    font-size: 68px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.pricing-headline .highlight-text {
    color: #570099;
    position: relative;
}

.pricing-subheadline {
    font-size: 28px;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.pricing-description {
    font-size: 19px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 40px 0;
}

/* CTA Buttons */
.pricing-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.btn-pricing-primary {
    background: linear-gradient(135deg, #570099 0%, #020241 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(87, 0, 153, 0.3);
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(87, 0, 153, 0.4);
}

.btn-pricing-secondary {
    background: transparent;
    color: #570099;
    border: 2px solid #570099;
    padding: 16px 38px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing-secondary:hover {
    background: #570099;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(87, 0, 153, 0.3);
}

/* Value Pillars */
.pricing-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto 50px;
}

.pricing-feature-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-orange {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.feature-pink {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.feature-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.feature-yellow {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
}

.feature-icon {
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.pricing-feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.feature-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Trust Line */
.pricing-trust-line {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 1300px;
    margin: 0 auto 0;
}

.pricing-trust-text {
    font-size: 16px;
    font-weight: 600;
    color: #4b5563;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Micro Stats */
.pricing-micro-stats {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-stats-text {
    font-size: 15px;
    font-weight: 500;
    color: #9ca3af;
    letter-spacing: 0.2px;
    margin: 0;
}

/* Responsive Design for Pricing Section */
@media (max-width: 1200px) {
    .pricing-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .pricing-headline {
        font-size: 52px;
    }

    .pricing-subheadline {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0 60px;
    }

    .pricing-content {
        margin-bottom: 50px;
    }

    .pricing-headline {
        font-size: 40px;
    }

    .pricing-subheadline {
        font-size: 22px;
    }

    .pricing-description {
        font-size: 17px;
        margin-bottom: 32px;
    }

    .pricing-cta-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 60px;
    }

    .btn-pricing-primary,
    .btn-pricing-secondary {
        width: 100%;
        max-width: 300px;
    }

    .pricing-features {
        grid-template-columns: 1fr;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .pricing-features::-webkit-scrollbar {
        height: 4px;
    }

    .pricing-features::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 2px;
    }

    .pricing-features::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 2px;
    }

    .pricing-feature-box {
        min-width: 280px;
        scroll-snap-align: start;
        padding: 32px 24px;
    }

    .pricing-trust-line {
        padding: 24px 0;
        margin-bottom: 16px;
    }

    .pricing-trust-text {
        font-size: 14px;
    }

    .pricing-stats-text {
        font-size: 13px;
    }
}

/* Enterprise Section */
/* Ziplofy Enterprise Section - Premium Redesign */
.enterprise-section {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    padding: 50px 0;
    position: relative;
}

.enterprise-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 60px;
    align-items: stretch;
}

/* Hero Card (Left Side) */
.enterprise-hero-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 56px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.enterprise-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #570099 0%, #020241 100%);
}

.enterprise-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.enterprise-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.enterprise-hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #570099;
    line-height: 1.3;
    margin: 0 0 32px 0;
}

.enterprise-hero-description {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 24px 0;
    flex: 0 0 auto;
}

.enterprise-hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.enterprise-hero-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

.enterprise-hero-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(87, 0, 153, 0.12) 0%, rgba(37, 99, 235, 0.1) 100%);
    color: #570099;
}

.enterprise-hero-check svg {
    width: 12px;
    height: 12px;
}

.btn-enterprise-primary {
    background: linear-gradient(135deg, #570099 0%, #020241 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(87, 0, 153, 0.3);
    width: fit-content;
}

.btn-enterprise-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(87, 0, 153, 0.4);
}

/* Feature Cards Grid (Right Side) */
.enterprise-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
    height: 100%;
}

.enterprise-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.enterprise-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(87, 0, 153, 0.2);
}

.enterprise-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #570099;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.enterprise-feature-card:hover .enterprise-feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.enterprise-feature-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.enterprise-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0;
}

.enterprise-feature-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* Trust Strip */
.enterprise-trust-strip {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin: 60px auto 32px;
    max-width: 1400px;
}

.enterprise-trust-text {
    font-size: 16px;
    font-weight: 600;
    color: #4b5563;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

/* Secondary CTA */
.enterprise-cta-wrapper {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.btn-enterprise-secondary {
    background: transparent;
    color: #570099;
    border: 2px solid #570099;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enterprise-secondary:hover {
    background: #570099;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(87, 0, 153, 0.3);
}

/* Responsive Design for Enterprise Section */
@media (max-width: 1200px) {
    .enterprise-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .enterprise-hero-card {
        padding: 48px;
    }

    .enterprise-hero-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .enterprise-section {
        padding: 80px 0;
    }

    .enterprise-layout {
        gap: 32px;
        margin-bottom: 48px;
    }

    .enterprise-hero-card {
        padding: 40px 32px;
    }

    .enterprise-hero-title {
        font-size: 36px;
    }

    .enterprise-hero-subtitle {
        font-size: 20px;
    }

    .enterprise-hero-description {
        font-size: 16px;
    }

    .enterprise-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .enterprise-feature-card {
        padding: 28px;
    }

    .enterprise-trust-strip {
        margin: 48px auto 24px;
    }

    .enterprise-trust-text {
        font-size: 14px;
    }
}

/* Scale Confidently Section */
.scale-section {
    /* background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%); */
    padding: 20px;
    position: relative;
}

.scale-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.scale-heading {
    font-size: 52px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.scale-subtitle {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.scale-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.scale-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.scale-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #570099 0%, #020241 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.scale-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(87, 0, 153, 0.15);
}

.scale-card:hover::before {
    transform: scaleX(1);
}

.scale-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #570099;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.scale-card:hover .scale-card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #020241;
}

.scale-card-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.scale-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0;
}

.scale-card-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Trust Line */
.scale-trust-line {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 1400px;
    margin: 0 auto;
}

.scale-trust-text {
    font-size: 16px;
    font-weight: 600;
    color: #4b5563;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Responsive Design for Scale Section */
@media (max-width: 1200px) {
    .scale-section {
        padding: 100px 0;
    }

    .scale-header {
        margin-bottom: 60px;
    }

    .scale-heading {
        font-size: 44px;
    }

    .scale-subtitle {
        font-size: 18px;
    }

    .scale-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 50px;
    }

    .scale-card {
        padding: 36px 28px;
    }
}

@media (max-width: 768px) {
    .scale-section {
        padding: 80px 0;
    }

    .scale-header {
        margin-bottom: 48px;
    }

    .scale-heading {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .scale-subtitle {
        font-size: 16px;
    }

    .scale-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .scale-features::-webkit-scrollbar {
        height: 4px;
    }

    .scale-features::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 2px;
    }

    .scale-features::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 2px;
    }

    .scale-card {
        min-width: 280px;
        scroll-snap-align: start;
        padding: 32px 24px;
    }

    .scale-card-title {
        font-size: 20px;
    }

    .scale-card-description {
        font-size: 15px;
    }

    .scale-trust-line {
        padding-top: 32px;
    }

    .scale-trust-text {
        font-size: 14px;
    }
}

/* Pricing Plans Section – Scrollable Feature Cards */
.pricing-plans-section {
    background-color: #ffffff;
    padding: 30px 0;
}

.pricing-plans-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plans-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.plans-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 64px;
    align-items: stretch;
}

/* Fixed Height Card Structure */
.pricing-plan-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 640px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid #E5E7EB;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.pricing-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(147, 51, 234, 0.3);
}

/* Premium Plan - Highlighted */
.plan-premium {
    border: 2px solid rgba(147, 51, 234, 0.4);
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.15);
}

.plan-premium:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 16px 48px rgba(147, 51, 234, 0.25);
    border-color: rgba(147, 51, 234, 0.5);
}

/* Most Popular Badge */
.plan-popular-badge {
    position: absolute;
    /* top: -14px; */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
    z-index: 10;
}

/* Card Header (Fixed) */
.plan-card-header {
    padding: 32px 28px 24px;
    flex-shrink: 0;
}

.plan-badge {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    width: fit-content;
    margin-bottom: 12px;
}

.plan-description {
    font-size: 0.9375rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    letter-spacing: -0.03em;
}

.price-period {
    font-size: 1rem;
    color: #6B7280;
    font-weight: 500;
}

/* Scrollable Features Container */
.plan-features-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 28px;
    margin: 0;
    scroll-behavior: smooth;
    /* Thin scrollbar for Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(147, 51, 234, 0.15) transparent;
}

/* Custom scrollbar for Webkit browsers */
.plan-features-container::-webkit-scrollbar {
    width: 6px;
}

.plan-features-container::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.plan-features-container::-webkit-scrollbar-thumb {
    background: rgba(147, 51, 234, 0.15);
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* More visible scrollbar on hover */
.pricing-plan-card:hover .plan-features-container::-webkit-scrollbar-thumb {
    background: rgba(147, 51, 234, 0.3);
}

.plan-features-container::-webkit-scrollbar-thumb:hover {
    background: rgba(147, 51, 234, 0.5);
}

/* Features List */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 8px;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.pricing-plan-card:hover .plan-feature {
    opacity: 1;
}

.check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #10b981;
    margin-top: 2px;
}

/* Card Footer (Fixed at Bottom) */
.plan-card-footer {
    padding: 20px 28px 28px;
    flex-shrink: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    margin-top: auto;
}

.plan-btn {
    background: #111827;
    color: #FFFFFF;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #1F2937;
}

.plan-btn-premium {
    background: linear-gradient(135deg, #9333ea, #ec4899);
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.3);
}

.plan-btn-premium:hover {
    background: linear-gradient(135deg, #7c3aed, #db2777);
    box-shadow: 0 6px 24px rgba(147, 51, 234, 0.4);
}

.plan-btn-basic,
.plan-btn-custom {
    background: #FFFFFF;
    color: #111827;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
}

.plan-btn-basic:hover,
.plan-btn-custom:hover {
    background: #F9FAFB;
    border-color: rgba(147, 51, 234, 0.3);
    color: #9333ea;
}

.plan-cta-note {
    font-size: 0.8125rem;
    color: #9CA3AF;
    text-align: center;
    margin: 0;
}

/* Trust Strip */
.pricing-plans-trust {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-plans-trust-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #6B7280;
    letter-spacing: 0.2px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .plan-premium {
        transform: scale(1);
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
    .plan-premium:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-plans-section {
        padding: 64px 0;
    }
    .pricing-plans-header {
        margin-bottom: 48px;
    }
    .plans-heading {
        font-size: 2rem;
    }
    .plans-subtitle {
        font-size: 1rem;
    }
    .pricing-plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pricing-plan-card {
        height: auto;
        min-height: 580px;
        max-height: 640px;
    }
    .plan-premium {
        transform: scale(1);
        grid-column: 1;
    }
    .plan-card-header {
        padding: 28px 24px 20px;
    }
    .plan-features-container {
        padding: 0 24px;
    }
    .plan-card-footer {
        padding: 20px 24px 24px;
    }
    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-plan-card {
        min-height: 520px;
    }
    .price-amount {
        font-size: 2.25rem;
    }
}

/* FAQ Section – Modern SaaS Dark Theme with Glassmorphism */
.faq-section {
    background: #0A0A0F;
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(139, 92, 246, 0.15), transparent 60%),
        radial-gradient(ellipse 70% 50% at 80% 70%, rgba(59, 130, 246, 0.12), transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(168, 85, 247, 0.1), transparent 65%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Split Layout */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Left Side - Heading & Description */
.faq-left {
    position: sticky;
    top: 120px;
}

.faq-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.faq-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Right Side - Glassmorphism Accordion */
.faq-right {
    position: relative;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Glassmorphism FAQ Item */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    overflow: hidden;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
    transform: translateY(-2px);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 
        0 12px 40px rgba(139, 92, 246, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.faq-item.active::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
}

/* Question Row */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
    user-select: none;
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.faq-question-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: rgba(139, 92, 246, 0.8);
    transition: color 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-question-icon {
    color: #8B5CF6;
    transform: scale(1.1);
}

.faq-text {
    font-size: 1.0625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-text {
    color: #FFFFFF;
}

/* Toggle Button */
.faq-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.faq-toggle:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
    transform: scale(1.05);
}

.faq-toggle.active {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
    transform: rotate(45deg);
}

.faq-toggle.active:hover {
    background: rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.6);
    transform: rotate(45deg) scale(1.05);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.faq-toggle.active .faq-icon {
    color: #FFFFFF;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease, opacity 0.4s ease;
    padding: 0;
    opacity: 0;
    visibility: hidden;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 0 0 0;
    opacity: 1;
    visibility: visible;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
    padding-left: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .faq-layout {
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .faq-left {
        position: static;
        text-align: center;
    }
    
    .faq-heading {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-heading {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .faq-description {
        font-size: 1rem;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-text {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding-left: 0;
        font-size: 0.875rem;
    }
    
    .faq-question-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 64px 0;
    }
    
    .faq-item {
        padding: 16px;
    }
    
    .faq-toggle {
        width: 32px;
        height: 32px;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
    }
}

/* Selling Products Section */
.selling-section {
    background-color: #f9fafb;
    padding: 50px 0;
}

.selling-header {
    text-align: center;
    margin-bottom: 80px;
}

.selling-label {
    font-size: 14px;
    font-weight: 600;
    color: #9333ea;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px 0;
}

.selling-headline {
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

/* Use Cases Section – Split Hover Reveal Card layout */
.use-cases-section.selling-section {
    background: #ffffff;
    background-image:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(139, 92, 246, 0.06), transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(59, 130, 246, 0.05), transparent 60%);
    background-repeat: no-repeat;
    background-size: 100% 100%, 100% 100%;
    padding: 100px 0;
}

.use-cases-section .use-cases-header {
    margin-bottom: 64px;
    text-align: center;
}

.use-cases-section .use-cases-label {
    margin-bottom: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8B5CF6;
}

.use-cases-section .use-cases-headline {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #111827;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.use-cases-section .selling-content.use-cases-grid {
    position: relative;
    min-height: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
}

/* Card – normal state: white, soft shadow, rounded */
.use-cases-section .use-case-card {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 16px 48px rgba(0, 0, 0, 0.04);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    cursor: pointer;
}

/* Hover effects work on all viewports when device supports hover */
@media (hover: hover) and (pointer: fine) {
    .use-cases-section .use-case-card:hover,
    .use-cases-section .use-case-card:focus-within {
        box-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.06),
            0 12px 32px rgba(0, 0, 0, 0.08),
            0 24px 64px rgba(0, 0, 0, 0.06);
        transform: scale(1.02);
    }
    
    .use-cases-section .use-case-card:hover .use-case-card-main,
    .use-cases-section .use-case-card:focus-within .use-case-card-main {
        opacity: 0.9;
    }
    
    .use-cases-section .use-case-card:hover .use-case-icon,
    .use-cases-section .use-case-card:focus-within .use-case-icon {
        transform: scale(1.05);
    }
}

/* Main content (left) – icon, title, short description */
.use-case-card-main {
    flex: 1;
    min-width: 0;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


.use-case-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


.use-case-icon--physical {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(167, 139, 250, 0.1));
    color: #8B5CF6;
}

.use-case-icon--dropship {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.1));
    color: #3B82F6;
}

.use-case-icon--pod {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.1));
    color: #10B981;
}

.use-case-icon--digital {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(167, 139, 250, 0.1));
    color: #8B5CF6;
}

.use-case-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.use-case-desc {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Right slide-in panel – gradient, blur, bullets + CTA */
.use-case-card-reveal {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    min-width: 160px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 32px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

.use-case-card--physical .use-case-card-reveal {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(99, 102, 241, 0.9));
}

.use-case-card--dropship .use-case-card-reveal {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(37, 99, 235, 0.9));
}

.use-case-card--pod .use-case-card-reveal {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.9));
}

.use-case-card--digital .use-case-card-reveal {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(99, 102, 241, 0.9));
}

/* Desktop hover - reveal panel slides from right (desktop viewport) */
@media (hover: hover) and (pointer: fine) and (min-width: 769px) {
    .use-cases-section .use-case-card:hover .use-case-card-reveal,
    .use-cases-section .use-case-card:focus-within .use-case-card-reveal {
        transform: translateX(0);
    }
}

/* Mobile viewport hover - reveal panel slides up (mobile viewport with hover support) */
@media (hover: hover) and (pointer: fine) and (max-width: 768px) {
    .use-cases-section .use-case-card:hover .use-case-card-reveal,
    .use-cases-section .use-case-card:focus-within .use-case-card-reveal {
        transform: translateY(0);
    }
}

.use-case-card-reveal .use-case-list {
    margin-bottom: 24px;
    flex: 1;
}

.use-case-card-reveal .use-case-link {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: #ffffff;
}

.use-case-card-reveal .use-case-link:hover {
    opacity: 0.85;
    transform: translateX(2px);
}

.use-case-link--physical,
.use-case-link--dropship,
.use-case-link--pod,
.use-case-link--digital {
    color: #ffffff;
}

/* Remove accent bar for cleaner design */
.use-case-card-accent {
    display: none;
}

.use-case-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.use-case-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.use-case-list li:last-child {
    margin-bottom: 0;
}

.use-case-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 12px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.use-case-card--physical .use-case-list li::before,
.use-case-card--dropship .use-case-list li::before,
.use-case-card--pod .use-case-list li::before,
.use-case-card--digital .use-case-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

@media (max-width: 1024px) {
    .use-cases-section .selling-content.use-cases-grid {
        gap: 28px;
    }
    .use-cases-section .use-case-card {
        min-height: 300px;
    }
    .use-case-card-main {
        padding: 36px 32px;
    }
    .use-case-card-reveal {
        width: 38%;
        padding: 36px 28px;
    }
}

/* Mobile: single column, panel slides from bottom, tap (focus-within) to reveal */
@media (max-width: 768px) {
    .use-cases-section.selling-section {
        padding: 80px 0;
    }
    
    .use-cases-section .use-cases-header {
        margin-bottom: 48px;
    }
    
    .use-cases-section .selling-content.use-cases-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .use-cases-section .use-case-card {
        min-height: auto;
        flex-direction: column;
    }
    
    .use-case-card-main {
        padding: 32px 28px;
    }
    
    .use-case-card-reveal {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        min-width: 0;
        height: auto;
        max-height: none;
        padding: 28px;
        justify-content: flex-start;
        transform: translateY(100%);
    }
    
    /* Hover is handled globally above - this section is for mobile viewport layout only */
    
    /* Active state for touch devices without hover support (mobile tap) */
    .use-cases-section .use-case-card.active {
        box-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.06),
            0 12px 32px rgba(0, 0, 0, 0.08),
            0 24px 64px rgba(0, 0, 0, 0.06);
    }
    
    .use-cases-section .use-case-card.active .use-case-card-main {
        opacity: 0.9;
    }
    
    .use-cases-section .use-case-card.active .use-case-icon {
        transform: scale(1.05);
    }
    
    .use-cases-section .use-case-card.active .use-case-card-reveal {
        transform: translateY(0);
    }
    
    .use-case-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
    }
    
    .use-case-title {
        font-size: 1.375rem;
    }
    
    .use-case-desc {
        font-size: 0.9375rem;
    }
    
    .use-case-list {
        font-size: 0.875rem;
    }
    
    .use-case-card-reveal .use-case-link {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .use-cases-section.selling-section {
        padding: 64px 0;
    }
    
    .use-cases-section .use-cases-header {
        margin-bottom: 40px;
    }
    
    .use-cases-section .selling-content.use-cases-grid {
        gap: 20px;
    }
    
    .use-case-card-main {
        padding: 28px 24px;
    }
    
    .use-case-card-reveal {
        padding: 24px;
    }
    
    .use-case-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
    }
    
    .use-case-title {
        font-size: 1.25rem;
    }
    
    .use-case-desc {
        font-size: 0.875rem;
    }
}

.selling-content {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

/* Center Background Image */
.selling-center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 50%;
    height: auto;
    max-width: 500px;
    z-index: 1;
    pointer-events: none;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    filter: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Center Circle */
.selling-center {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9333ea 0%, #6b21a8 100%);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
    position: relative;
    z-index: 2;
}

/* Website Header */
.website-header {
    background: #f9fafb;
    padding: 8px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.header-contact {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    font-size: 10px;
    color: #6b7280;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Navigation Bar */
.website-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link-item {
    font-size: 11px;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-link-item:hover {
    color: #3b82f6;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: 6px;
    padding: 6px 12px;
    gap: 8px;
    flex: 1;
    max-width: 200px;
    margin-left: 20px;
}

.search-input {
    border: none;
    background: transparent;
    font-size: 10px;
    color: #6b7280;
    flex: 1;
    outline: none;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-icon {
    font-size: 12px;
    color: #6b7280;
}

/* Product Banner */
.product-banner {
    flex: 1;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.banner-content {
    flex: 1;
    z-index: 2;
}

.banner-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.banner-description {
    font-size: 11px;
    color: #d1d5db;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.banner-btn {
    background-color: #f97316;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.banner-btn:hover {
    background-color: #ea580c;
}

.banner-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.product-image-macbook {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-image-macbook::before {
    content: '💻';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
}

/* Corner Cards Positioning */
.selling-card {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    width: 420px;
    height: 320px;
    display: flex;
    flex-direction: column;
    z-index: 3;
    overflow: hidden;
}

.selling-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.15;
    transition: opacity 0.5s ease;
}

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

/* Top Left Card */
.selling-card-top-left {
    top: 0;
    left: 0;
}

/* Top Right Card */
.selling-card-top-right {
    top: 0;
    right: 0;
}

/* Bottom Left Card */
.selling-card-bottom-left {
    bottom: 0;
    left: 0;
}

/* Bottom Right Card */
.selling-card-bottom-right {
    bottom: 0;
    right: 0;
}

/* Connecting Lines SVG Container */
.connecting-lines-svg {
    position: absolute;
    top: 0;
    left: 5px;
    width: 99%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

/* Wave Path Styling */
.wave-path {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    animation: waveFlow 4s ease-in-out infinite;
}

.wave-path-1 {
    animation-delay: 0s;
}

.wave-path-2 {
    animation-delay: 1s;
}

.wave-path-3 {
    animation-delay: 2s;
}

.wave-path-4 {
    animation-delay: 3s;
}

/* Wave Flow Animation */
@keyframes waveFlow {
    0% {
        stroke-dasharray: 0 2000;
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dasharray: 2000 0;
        opacity: 0.7;
    }
}

/* Box Color Change Animation based on Line Flow */
.selling-card-top-left::before {
    background: linear-gradient(135deg, 
        #9333ea 0%, 
        #6b21a8 25%, 
        #f59e0b 50%, 
        #ef4444 75%, 
        #9333ea 100%);
    background-size: 400% 400%;
    animation: boxColorFlow1 4s linear infinite;
}

.selling-card-top-right::before {
    background: linear-gradient(135deg, 
        #3b82f6 0%, 
        #2563eb 25%, 
        #10b981 50%, 
        #059669 75%, 
        #3b82f6 100%);
    background-size: 400% 400%;
    animation: boxColorFlow2 4s linear infinite;
}

.selling-card-bottom-left::before {
    background: linear-gradient(135deg, 
        #10b981 0%, 
        #059669 25%, 
        #9333ea 50%, 
        #6b21a8 75%, 
        #10b981 100%);
    background-size: 400% 400%;
    animation: boxColorFlow3 4s linear infinite;
}

.selling-card-bottom-right::before {
    background: linear-gradient(135deg, 
        #f59e0b 0%, 
        #ef4444 25%, 
        #3b82f6 50%, 
        #2563eb 75%, 
        #f59e0b 100%);
    background-size: 400% 400%;
    animation: boxColorFlow4 4s linear infinite;
}

@keyframes boxColorFlow1 {
    0% {
        background-position: 0% 50%;
        opacity: 0.1;
    }
    25% {
        background-position: 100% 50%;
        opacity: 0.25;
    }
    50% {
        background-position: 200% 50%;
        opacity: 0.15;
    }
    75% {
        background-position: 300% 50%;
        opacity: 0.2;
    }
    100% {
        background-position: 400% 50%;
        opacity: 0.1;
    }
}

@keyframes boxColorFlow2 {
    0% {
        background-position: 400% 50%;
        opacity: 0.1;
    }
    25% {
        background-position: 300% 50%;
        opacity: 0.25;
    }
    50% {
        background-position: 200% 50%;
        opacity: 0.15;
    }
    75% {
        background-position: 100% 50%;
        opacity: 0.2;
    }
    100% {
        background-position: 0% 50%;
        opacity: 0.1;
    }
}

@keyframes boxColorFlow3 {
    0% {
        background-position: 0% 50%;
        opacity: 0.1;
    }
    25% {
        background-position: 100% 50%;
        opacity: 0.25;
    }
    50% {
        background-position: 200% 50%;
        opacity: 0.15;
    }
    75% {
        background-position: 300% 50%;
        opacity: 0.2;
    }
    100% {
        background-position: 400% 50%;
        opacity: 0.1;
    }
}

@keyframes boxColorFlow4 {
    0% {
        background-position: 400% 50%;
        opacity: 0.1;
    }
    25% {
        background-position: 300% 50%;
        opacity: 0.25;
    }
    50% {
        background-position: 200% 50%;
        opacity: 0.15;
    }
    75% {
        background-position: 100% 50%;
        opacity: 0.2;
    }
    100% {
        background-position: 0% 50%;
        opacity: 0.1;
    }
}



.card-title-selling {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.card-description-selling {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
    flex: 1;
    overflow: hidden;
}

/* Responsive Design for Selling Section */
@media (max-width: 1200px) {
    .selling-content {
        min-height: 700px;
        padding: 80px 20px;
    }
    
    .selling-card {
        width: 280px;
        height: 260px;
        padding: 24px;
    }
    
    .connecting-line-top-left,
    .connecting-line-top-right,
    .connecting-line-bottom-left,
    .connecting-line-bottom-right {
        width: calc(50vw - 400px);
        max-width: 200px;
    }

    .selling-headline {
        font-size: 40px;
    }

    .center-circle {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 968px) {
    .selling-content {
        min-height: 600px;
        padding: 40px 20px;
        position: relative;
    }
    
    /* Center image - Made bigger for better visibility on tablets */
    .selling-center-image {
        width: 50%;
        max-width: 220px;
        min-width: 180px;
        z-index: 1;
    }
    
    /* Cards - Reduced size for better spacing */
    .selling-card {
        position: absolute;
        width: 35%;
        max-width: 145px;
        height: auto;
        min-height: 150px;
        max-height: 170px;
        padding: 14px;
        z-index: 2;
    }
    
    .selling-card-top-left,
    .selling-card-top-right,
    .selling-card-bottom-left,
    .selling-card-bottom-right {
        width: 35%;
        max-width: 145px;
        height: auto;
        min-height: 150px;
        max-height: 170px;
        padding: 14px;
        position: absolute;
        z-index: 2;
    }

    .selling-card-top-left {
        top: 15px;
        left: 15px;
    }
    
    .selling-card-top-right {
        top: 15px;
        right: 15px;
    }
    
    .selling-card-bottom-left {
        bottom: 15px;
        left: 15px;
    }
    
    .selling-card-bottom-right {
        bottom: 15px;
        right: 15px;
    }
    
    .connecting-lines-svg {
        display: block;
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .selling-section {
        padding: 40px 0;
        background-color: #ffffff;
    }

    .selling-section .container {
        padding: 0 15px;
    }

    .selling-header {
        margin-bottom: 30px;
    }

    .selling-label {
        font-size: 12px;
    }

    .selling-headline {
        font-size: 24px;
    }

    .selling-content {
        min-height: auto;
        padding: 0;
        position: relative;
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Mobile: remove center image + connecting lines */
    .selling-center-image,
    .connecting-lines-svg {
        display: none !important;
    }

    /* Mobile: normal card alignment (no absolute positioning) */
    .selling-card {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        min-height: 170px;
        max-height: none;
        padding: 18px;
        margin: 0;
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .selling-card-top-left,
    .selling-card-top-right,
    .selling-card-bottom-left,
    .selling-card-bottom-right {
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
    }

    .card-title-selling {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.2;
        font-weight: 700;
    }

    .card-description-selling {
        font-size: 12px;
        line-height: 1.55;
        margin: 0;
    }
}

/* Testimonials Section – Featured + Secondary Slider (premium, conversion-focused) */
.testimonials-section {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    padding: 48px 0 64px;
    overflow-x: hidden;
    overflow-y: visible;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.community-badge {
    display: inline-block;
    background: linear-gradient(135deg, #570099 0%, #020241 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.testimonials-headline {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    line-height: 1.15;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Featured testimonial – large, highlighted, hierarchy: quote > stars > name > role > company */
.testimonial-featured {
    background: #ffffff;
    border-radius: 28px;
    padding: 48px 56px 40px;
    margin-bottom: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(87, 0, 153, 0.08);
    position: relative;
    overflow: hidden;
}

.testimonial-featured::before {
    content: '"';
    position: absolute;
    top: 24px;
    left: 32px;
    font-size: 72px;
    font-weight: 300;
    color: #570099;
    opacity: 0.12;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-featured-quote {
    font-size: 22px;
    line-height: 1.65;
    color: #374151;
    margin: 0 0 20px 0;
    font-style: normal;
    position: relative;
    z-index: 1;
}

.testimonial-featured-stars {
    font-size: 18px;
    color: #f59e0b;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.testimonial-featured-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-featured-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: #e5e7eb;
}

.testimonial-featured-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-featured-name {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    font-style: normal;
}

.testimonial-featured-role {
    font-size: 14px;
    color: #6b7280;
}

.testimonial-featured-company {
    font-size: 14px;
    color: #570099;
    font-weight: 600;
}

/* Secondary testimonials – slider, contained scroll (no page horizontal scroll) */
.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 0 24px 0;
    margin-bottom: 30px;
    contain: layout style;
}

.testimonials-carousel {
    display: flex;
    gap: 20px;
    padding: 8px 0 32px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    min-width: 0;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

/* Secondary card – quote > stars > name > role > company */
.testimonial-card {
    flex: 0 0 320px;
    min-width: 280px;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border-color: rgba(87, 0, 153, 0.12);
}

.testimonial-card.active {
    border-color: rgba(87, 0, 153, 0.2);
    box-shadow: 0 6px 24px rgba(87, 0, 153, 0.12);
}

.testimonial-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-stars {
    font-size: 14px;
    color: #f59e0b;
    letter-spacing: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #f3f4f6;
    background: #e5e7eb;
}

.testimonial-author-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.testimonial-card .author-name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.testimonial-card .author-role {
    font-size: 13px;
    color: #6b7280;
}

.testimonial-card .author-company {
    font-size: 13px;
    color: #570099;
    font-weight: 600;
}

/* Navigation Controls */
.testimonials-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 0;
}

.testimonial-nav-btn {
    background: #ffffff;
    color: #570099;
    border: 2px solid #e5e7eb;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-nav-btn:hover {
    background: #570099;
    color: #ffffff;
    border-color: #570099;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(87, 0, 153, 0.3);
}

.testimonial-nav-btn:active {
    transform: translateY(0);
}

.testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
}

.testimonial-progress {
    flex: 1;
    max-width: 400px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.testimonial-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #570099 0%, #020241 100%);
    border-radius: 2px;
    width: 20%;
    transition: width 0.3s ease;
}

/* Trust Enhancers */
.testimonials-trust {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 1300px;
    margin: 0 auto;
}

.testimonials-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.rating-stars {
    font-size: 20px;
    color: #fbbf24;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 16px;
    color: #4b5563;
    margin: 0;
}

.rating-text strong {
    color: #1f2937;
    font-weight: 700;
}

.testimonials-trust-text {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

/* Responsive – Testimonials (featured + secondary slider) */
@media (max-width: 1200px) {
    .testimonials-headline {
        font-size: 42px;
    }

    .testimonial-featured {
        padding: 40px 40px 36px;
    }

    .testimonial-featured-quote {
        font-size: 20px;
    }

    .testimonial-card {
        flex: 0 0 300px;
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0 48px;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-headline {
        font-size: 32px;
        line-height: 1.2;
    }

    .testimonials-subtitle {
        font-size: 16px;
    }

    .testimonial-featured {
        padding: 32px 24px 28px;
        margin-bottom: 32px;
        border-radius: 24px;
    }

    .testimonial-featured::before {
        font-size: 56px;
        top: 16px;
        left: 20px;
    }

    .testimonial-featured-quote {
        font-size: 18px;
        line-height: 1.6;
    }

    .testimonial-featured-stars {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .testimonial-featured-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .testimonial-featured-avatar {
        width: 56px;
        height: 56px;
    }

    .testimonials-carousel-wrapper {
        padding: 0 16px;
        margin-bottom: 36px;
    }

    .testimonials-carousel {
        gap: 16px;
    }

    /* One secondary card per view on mobile; contained scroll */
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 24px 20px;
    }

    .testimonial-text {
        -webkit-line-clamp: 3;
    }

    .testimonials-navigation {
        gap: 16px;
    }

    .testimonial-progress {
        max-width: 180px;
    }

    .testimonials-trust {
        padding-top: 36px;
    }

    .testimonials-rating {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================
   Testimonials SaaS – Two-row infinite scroll
   ============================================ */
.testimonials-saas-section {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    padding: 20px 0 20px;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 100%;
}

.testimonials-saas-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-saas-label {
    display: inline-block;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.testimonials-saas-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Row container – no horizontal scroll leak */
.testimonials-scroll-row {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    margin-bottom: 24px;
    contain: layout style;
}

.testimonials-scroll-row:last-of-type {
    margin-bottom: 0;
}

.testimonials-scroll-track {
    width: 100%;
    overflow: hidden;
}

/* Inner strip: 200% width = two identical groups for seamless loop */
.testimonials-scroll-inner {
    display: flex;
    width: 200%;
    flex-shrink: 0;
    will-change: transform;
}

/* Row 1: scrolls left → right (content moves left) */
.testimonials-scroll-row--1 .testimonials-scroll-inner {
    animation: testimonials-scroll-left 45s linear infinite;
}

/* Row 2: scrolls right → left (content moves right) */
.testimonials-scroll-inner--reverse {
    animation: testimonials-scroll-right 52s linear infinite;
}

/* Pause on hover (desktop) */
.testimonials-scroll-row:hover .testimonials-scroll-inner {
    animation-play-state: paused;
}

/* Respect reduced motion – disable animation */
@media (prefers-reduced-motion: reduce) {
    .testimonials-scroll-row--1 .testimonials-scroll-inner,
    .testimonials-scroll-inner--reverse {
        animation: none;
    }
    .testimonials-scroll-inner {
        width: 100%;
    }
    .testimonials-scroll-group {
        flex: 0 0 100%;
    }
    .testimonials-scroll-group:not(:first-child) {
        display: none;
    }
}

@keyframes testimonials-scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes testimonials-scroll-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Each group = half of inner (one full set of cards) */
.testimonials-scroll-group {
    flex: 0 0 32%;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    padding: 0 12px;
}

/* Card – rounded, soft shadow, glass/soft white */
.testimonial-saas-card {
    flex: 0 0 300px;
    min-width: 280px;
    max-width: 340px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.testimonial-saas-quote-icon {
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 48px;
    line-height: 1;
    font-family: Georgia, serif;
    color: #94a3b8;
    opacity: 0.6;
}

.testimonial-saas-text {
    font-size: 15px;
    line-height: 1.55;
    color: #374151;
    margin: 0;
    padding-top: 8px;
    padding-left: 4px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-saas-keyword {
    color: #ea580c;
    font-weight: 600;
}

.testimonial-saas-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 4px 0;
}

.testimonial-saas-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-saas-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #e5e7eb;
}

.testimonial-saas-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.testimonial-saas-name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.testimonial-saas-role {
    font-size: 13px;
    color: #6b7280;
}

.testimonials-saas-trust {
    text-align: center;
    padding-top: 20px;
    margin-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonials-saas-trust-text {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

.testimonials-saas-trust-text strong {
    color: #1f2937;
    font-weight: 600;
}

/* Responsive – testimonials SaaS */
@media (max-width: 1200px) {
    .testimonials-scroll-group {
        gap: 16px;
        padding: 0 10px;
    }
    .testimonial-saas-card {
        flex: 0 0 280px;
        min-width: 260px;
        padding: 20px 18px;
    }
    .testimonial-saas-text {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

@media (max-width: 768px) {
    .testimonials-saas-section {
        padding: 40px 16px 48px;
    }
    .testimonials-saas-section .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .testimonials-saas-header {
        margin-bottom: 32px;
    }
    .testimonials-saas-label {
        padding: 6px 14px;
        font-size: 11px;
    }
    .testimonials-scroll-row {
        margin-bottom: 20px;
    }
    /* Mobile: inner = 600% so one group = 300% track → 1 card visible at a time */
    .testimonials-scroll-inner {
        width: 600%;
    }
    .testimonials-scroll-group {
        gap: 15px;
        padding: 0;
        overflow: hidden;
        flex-wrap: nowrap;
    }
    /* Mobile: 1 card = 33.333% of group = 100% track width – sirf ek card dikhe */
    .testimonial-saas-card {
        flex: 0 0 33.333%;
        min-width: 0;
        max-width: 33.333%;
        padding: 20px 16px;
        border-radius: 16px;
        min-height: 0;
        overflow: hidden;
    }
    .testimonial-saas-quote-icon {
        font-size: 36px;
        top: 10px;
        left: 14px;
    }
    .testimonial-saas-text {
        font-size: 13px;
        line-height: 1.5;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        padding-top: 4px;
    }
    .testimonial-saas-author {
        flex-shrink: 0;
        margin-top: 8px;
    }
    .testimonial-saas-name {
        font-size: 14px;
    }
    .testimonial-saas-role {
        font-size: 12px;
    }
    .testimonials-saas-trust {
        padding-top: 32px;
        margin-top: 12px;
    }
    .testimonials-saas-trust-text {
        font-size: 14px;
    }
    /* Slightly slower on mobile so it’s less distracting */
    .testimonials-scroll-row--1 .testimonials-scroll-inner {
        animation-duration: 60s;
    }
    .testimonials-scroll-inner--reverse {
        animation-duration: 65s;
    }
}

@media (max-width: 480px) {
    .testimonials-saas-section {
        padding-left: 12px;
        padding-right: 12px;
    }
    .testimonial-saas-card {
        padding: 18px 14px;
    }
    .testimonial-saas-quote-icon {
        font-size: 32px;
        top: 10px;
        left: 14px;
    }
    .testimonial-saas-text {
        font-size: 13px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    .testimonial-saas-name {
        font-size: 14px;
    }
    .testimonial-saas-role {
        font-size: 12px;
    }
}

/* Footer Section – Premium SaaS Design */
.footer {
    width: 100%;
    background: #F9FAFB;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Oversized ZIPLOFY Brand Watermark at Footer Bottom */
.footer::after {
    content: 'ZIPLOFY';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(200px, 30vw, 400px);
    font-weight: 800;
    font-family: 'Satoshi', sans-serif;
    color: rgba(0, 0, 0, 0.035);
    letter-spacing: -16px;
    line-height: 1;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    /* Only top portion visible - cropped from bottom by footer overflow */
    height: auto;
    overflow: visible;
}

.footer-container {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 20px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    max-width: 1570px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Top Section: Brand & CTA */
.footer-top-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Brand Section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-description {
    font-size: 0.9375rem;
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
    max-width: 480px;
}

/* CTA Section */
.footer-cta-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
}

.footer-cta-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #111827;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #1F2937;
}

.footer-cta-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-cta-button:hover .footer-cta-icon {
    transform: rotate(45deg);
}

/* Footer Links Section */
.footer-links-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-link-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.9375rem;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    width: fit-content;
    line-height: 1.6;
}

.footer-link:hover {
    color: #111827;
    transform: translateX(3px);
}

/* Newsletter Section */
.footer-newsletter-section {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-newsletter-form:focus-within {
    border-color: rgba(234, 179, 8, 0.4);
    box-shadow: 0 4px 16px rgba(234, 179, 8, 0.15);
}

.footer-newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 20px;
    font-size: 0.9375rem;
    color: #111827;
    outline: none;
    font-family: inherit;
}

.footer-newsletter-input::placeholder {
    color: #9CA3AF;
}

.footer-newsletter-button {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: none;
    background: #FCD34D;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(234, 179, 8, 0.2);
}

.footer-newsletter-button:hover {
    background: #FBBF24;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.footer-newsletter-button:active {
    transform: scale(0.98);
}

.footer-newsletter-button svg {
    transition: transform 0.3s ease;
}

.footer-newsletter-button:hover svg {
    transform: translateX(2px);
}

/* Bottom Section: Social & Legal */
.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #6B7280;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.12);
    color: #111827;
    background: rgba(255, 255, 255, 0.9);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal-link {
    font-size: 0.875rem;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.footer-legal-link:hover {
    color: #111827;
    transform: translateY(-1px);
}

.footer-legal-separator {
    color: #D1D5DB;
    font-size: 0.875rem;
    font-weight: 300;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
    .footer-container {
        padding: 56px 48px;
    }
    
    .footer-top-section {
        gap: 60px;
    }
    
    .footer-links-section {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .footer {
        padding: 64px 0 32px;
    }
    
    .footer-container {
        padding: 48px 40px;
    }
    
    .footer-top-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-cta-section {
        align-items: flex-start;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-bottom-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .footer-legal-links {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 48px 0 24px;
    }

    .footer::after {
        font-size: clamp(140px, 35vw, 220px);
        letter-spacing: -10px;
        bottom: -20px;
        color: rgba(0, 0, 0, 0.04);
    }
    
    .footer-container {
        padding: 40px 32px;
        border-radius: 20px;
    }
    
    .footer-top-section {
        gap: 40px;
        margin-bottom: 48px;
        padding-bottom: 48px;
    }
    
    .footer-cta-heading {
        font-size: 1.5rem;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .footer-newsletter-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .footer-newsletter-form {
        max-width: 100%;
    }
    
    .footer-bottom-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-legal-links {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .footer::after {
        font-size: clamp(100px, 40vw, 180px);
        letter-spacing: -8px;
        bottom: -15px;
        color: rgba(0, 0, 0, 0.045);
    }

    .footer-container {
        padding: 32px 24px;
        border-radius: 16px;
    }
    
    .footer-top-section {
        gap: 32px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .footer-cta-heading {
        font-size: 1.25rem;
    }
    
    .footer-cta-button {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
    
    .footer-cta-icon {
        width: 32px;
        height: 32px;
    }
    
    .team-avatar {
        width: 28px;
        height: 28px;
    }
    
    .footer-links-section {
        gap: 28px;
    }
    
    .footer-column-title {
        font-size: 0.8125rem;
    }
    
    .footer-link {
        font-size: 0.875rem;
    }
    
    .footer-newsletter-input {
        padding: 12px 16px;
        font-size: 0.875rem;
    }
    
    .footer-newsletter-button {
        width: 44px;
        height: 44px;
    }
    
    .footer-social-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer-legal-link {
        font-size: 0.8125rem;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1f2937;
    padding: 8px;
}

/* Tablet Styles (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero-section {
        padding: 50px 0 70px;
    }

    .about-hero-section {
        padding: 44px 0 60px;
    }

    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-hero-headline {
        font-size: 38px;
    }

    .about-hero-right {
        order: -1;
    }

    .about-hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-left::before {
        left: -32px;
        right: -32px;
    }

    .hero-headline {
        font-size: 44px;
    }

    .hero-right {
        height: 450px;
        order: -1;
    }

    .floating-card {
        display: none;
    }

    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-vision-left {
        order: 2;
    }

    .mission-vision-right {
        order: 1;
    }

    .grow-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .grow-brand-column {
        order: 1;
    }

    .grow-cards-column {
        order: 2;
        gap: 24px;
    }

    /* Remove floating offsets on tablet - normal stacking */
    .grow-card-float-up,
    .grow-card-float-center,
    .grow-card-float-down {
        transform: translateY(0) !important;
        margin-top: 0;
        margin-bottom: 0;
    }

    .why-choose-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-card-hero,
    .why-choose-card-2,
    .why-choose-card-3,
    .why-choose-card-4,
    .why-choose-card-5,
    .why-choose-card-6 {
        grid-column: 1;
        grid-row: auto;
    }

    .why-choose-card-hero .why-choose-card-content {
        gap: 24px;
    }

    .india-map-illustration {
        max-width: 100%;
        height: auto;
    }

    .india-map-illustration svg {
        width: 100%;
        height: auto;
    }

    .why-choose-title {
        font-size: clamp(36px, 6vw, 44px);
        margin-bottom: 60px;
    }

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

    .media-section-title {
        font-size: 44px;
    }

    .media-card-header {
        padding: 36px 28px 28px;
    }

    .media-card-name {
        font-size: 28px;
    }

    .media-card-body {
        padding: 0 28px 32px;
        gap: 18px;
    }

    .media-card-headline {
        font-size: 20px;
    }

    .mission-vision-content {
        gap: 60px;
    }

    .mission-headline {
        font-size: 44px;
    }

    .mission-image {
        max-height: 550px;
    }

    .grow-brand-headline {
        font-size: clamp(32px, 5vw, 44px);
    }

    .why-choose-title {
        font-size: clamp(32px, 5vw, 36px);
        margin-bottom: 60px;
    }

    .header-content {
        gap: 24px;
    }

    .nav {
        gap: 4px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }

    .btn-get-started {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    /* Prevent horizontal scroll on mobile - but allow vertical scrolling */
    html {
        overflow-x: hidden;
        overflow-y: auto;
        width: 100%;
        max-width: 100%;
        position: relative;
        /* Smooth scrolling for mobile */
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    body {
        overflow-x: hidden;
        overflow-y: auto !important;
        width: 100%;
        max-width: 100%;
        position: relative;
        /* Ensure smooth scrolling on mobile */
        -webkit-overflow-scrolling: touch;
        /* Allow natural scrolling behavior */
        overscroll-behavior-y: auto;
        /* Prevent any height restrictions */
        min-height: 100vh;
        height: auto;
    }

    /* Ensure all sections don't overflow horizontally but allow vertical scrolling */
    section {
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
        position: relative;
    }
    
    /* Contact page hero section - mobile scrolling fixes */
    .contact-intro-section {
        overflow: visible !important;
        min-height: auto !important;
        height: auto !important;
        position: relative;
        width: 100%;
        max-width: 100%;
        /* Prevent any transform that blocks scrolling */
        transform: none !important;
        /* Ensure proper z-index */
        z-index: 1;
        /* Remove any contain that might block scrolling */
        contain: none;
        /* Prevent fixed positioning issues */
        will-change: auto;
    }
    
    .contact-intro-section::before,
    .contact-intro-section::after {
        /* Ensure pseudo-elements don't block scrolling */
        pointer-events: none;
        position: absolute;
        z-index: 0;
    }
    
    .contact-intro-content {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        position: relative;
        z-index: 2;
        /* Stack content vertically */
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Prevent transform issues */
        transform: none;
        will-change: auto;
    }
    
    .contact-intro-title,
    .contact-intro-description {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        position: relative;
        z-index: 1;
    }
    
    /* Ensure images scale correctly and don't block scrolling */
    .contact-intro-section img {
        max-width: 100%;
        height: auto;
        display: block;
        position: relative;
        z-index: 1;
        /* Prevent transform issues */
        transform: none;
        will-change: auto;
    }
    
    /* Disable animations that might interfere with scrolling on mobile */
    .contact-intro-section * {
        /* Reduce animation complexity on mobile for smoother scrolling */
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.2s;
    }

    /* Container */
    .container {
        padding: 0 20px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    /* Fix elements that might cause overflow */
    .header-content,
    .hero-content,
    .automation-content,
    .themes-content,
    .selling-content {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Header */
    body {
        padding-top: 64px;
    }

    .header {
        padding: 12px 0;
    }

    .header.scrolled {
        padding: 10px 0;
    }

    .header-content {
        position: relative;
        gap: 16px;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .logo-img {
        height: 32px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .mobile-drawer-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease;
        z-index: 998;
    }

    .header.menu-open .mobile-drawer-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .header-drawer {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: min(82vw, 340px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        box-shadow: 20px 0 60px rgba(0, 0, 0, 0.16);
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        transform: translate3d(-105%, 0, 0);
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding: 20px 16px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        overflow-y: auto;
        overscroll-behavior: contain;
        justify-content: flex-start;
    }

    /* Mobile Menu Logo */
    .mobile-menu-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        margin-bottom: 10px;
        flex-shrink: 0;
    }

    .mobile-logo-img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

    .header.menu-open .header-drawer {
        transform: translate3d(0, 0, 0);
    }

    .header-drawer .nav {
        position: static;
        flex: 1 1 auto;
        width: 100%;
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border: 0;
        display: flex;
        max-height: none;
        overflow-y: auto;
        margin-top: 0;
        min-height: 0;
    }

    .nav-link {
        font-size: 16px;
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        text-align: left;
    }

    .nav-link::before {
        display: none;
    }

    .btn-get-started {
        padding: 12px 20px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
        margin-top: auto;
        align-self: stretch;
        flex-shrink: 0;
        margin-bottom: 0;
        order: 999;
    }

    /* Hero Section */
    .hero-section {
        padding: 0;
        min-height: auto;
    }

    .about-hero-section {
        padding: 20px 0 20px;
    }

    .about-hero-headline {
        font-size: 28px;
        line-height: 1.25;
    }

    .about-hero-subtext {
        font-size: 16px;
    }

    .about-hero-stat-value {
        font-size: 18px;
    }

    .about-hero-stat-label {
        font-size: 12px;
    }

    .about-hero-visual {
        max-width: 100%;
    }

    .about-hero-section .hero-about-image {
        max-height: 320px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-left {
        max-width: 100%;
        gap: 24px;
    }

    .hero-left::before {
        left: -20px;
        right: -20px;
        top: -100px;
        bottom: -100px;
    }

    .hero-eyebrow {
        font-size: 12px;
    }

    .hero-headline {
        font-size: 36px;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 17px;
        line-height: 1.6;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 15px;
    }

    .hero-trust-text {
        font-size: 13px;
        text-align: center;
    }

    .hero-right {
        height: 300px;
        order: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }

    .mockup-container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .mockup-wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .dashboard-mockup {
        transform: scale(0.98) translateY(0) !important;
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        /* Improved blending with background - smoother gradient fade */
        mix-blend-mode: normal;
        filter: 
            drop-shadow(0 15px 50px rgba(37, 99, 235, 0.18))
            drop-shadow(0 8px 25px rgba(99, 102, 241, 0.12))
            drop-shadow(0 0 15px rgba(139, 92, 246, 0.08));
        /* Smooth gradient fade at bottom for better blend */
        mask-image: 
            linear-gradient(to bottom, 
                black 0%, 
                black 78%, 
                rgba(0, 0, 0, 0.95) 90%,
                rgba(0, 0, 0, 0.8) 95%,
                rgba(0, 0, 0, 0.4) 98%,
                transparent 100%);
        -webkit-mask-image: 
            linear-gradient(to bottom, 
                black 0%, 
                black 78%, 
                rgba(0, 0, 0, 0.95) 90%,
                rgba(0, 0, 0, 0.8) 95%,
                rgba(0, 0, 0, 0.4) 98%,
                transparent 100%);
        /* Ensure proper alignment */
        margin: 0 auto;
        display: block;
    }

    .floating-card {
        display: none;
    }

    .hero-about-image {
        max-width: 100%;
        max-height: 450px;
    }

    /* Mission & Vision Section */
    .mission-vision-section {
        padding: 40px 0;
    }

    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mission-vision-left {
        order: 2;
    }

    .mission-vision-right {
        order: 1;
        gap: 32px;
    }

    .mission-headline {
        font-size: 36px;
        line-height: 1.2;
    }

    .section-title {
        font-size: 20px;
    }

    .section-description {
        font-size: 17px;
        line-height: 1.7;
    }

    .mission-vision-divider {
        margin: 4px 0;
    }

    .mission-cta-section {
        gap: 12px;
    }

    .btn-get-in-touch {
        width: 100%;
        padding: 16px 32px;
        font-size: 17px;
    }

    .mission-secondary-cta {
        font-size: 15px;
    }

    .mission-trust-strip {
        gap: 8px;
        padding-top: 20px;
    }

    .trust-item-small {
        font-size: 13px;
    }

    .mission-image {
        max-height: 450px;
    }

    /* Grow Section */
    .grow-section {
        padding: 40px 0;
    }

    .grow-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .grow-brand-column {
        order: 1;
    }

    .grow-cards-column {
        order: 2;
        gap: 24px;
    }

    /* Remove floating offsets on mobile - normal stacking */
    .grow-card-float-up,
    .grow-card-float-center,
    .grow-card-float-down {
        transform: translateY(0) !important;
        margin-top: 0;
        margin-bottom: 0;
    }

    .grow-brand-headline {
        font-size: clamp(32px, 5vw, 40px);
    }

    .grow-brand-description {
        font-size: 17px;
    }

    .grow-value-card {
        padding: 36px 32px;
    }

    .grow-value-title {
        font-size: 20px;
    }

    .grow-value-description {
        font-size: 15px;
    }

    /* Why Choose Section */
    .why-choose-section {
        padding: 0;
    }

    .why-choose-title {
        font-size: clamp(32px, 6vw, 36px);
        margin-bottom: 50px;
        line-height: 1.2;
    }

    .why-choose-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-card-hero,
    .why-choose-card-2,
    .why-choose-card-3,
    .why-choose-card-4,
    .why-choose-card-5,
    .why-choose-card-6 {
        grid-column: 1;
        grid-row: auto;
    }

    .why-choose-card-hero .why-choose-card-content {
        gap: 24px;
    }

    .why-choose-card {
        padding: 32px 28px;
    }

    .why-choose-card-hero .why-choose-card-title {
        font-size: clamp(24px, 5vw, 28px);
    }

    .why-choose-card-hero .why-choose-card-description {
        font-size: 16px;
    }

    .why-choose-card-icon {
        margin-bottom: 12px;
    }

    .why-choose-card-title {
        font-size: 20px;
    }

    .why-choose-card-description {
        font-size: 15px;
        line-height: 1.6;
    }

    /* Media Section */
    .media-section {
        padding: 40px 0;
    }

    .media-section-title {
        font-size: 36px;
        margin-bottom: 12px;
        letter-spacing: -0.02em;
    }

    .media-section-subtitle {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .media-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .media-card {
        border-radius: 18px;
    }

    .media-card-header {
        padding: 32px 24px 24px;
        border-radius: 18px 18px 0 0;
    }

    .media-card-name {
        font-size: 26px;
        letter-spacing: -0.01em;
    }

    .media-card-body {
        padding: 0 24px 28px;
        gap: 16px;
    }

    .media-card-headline {
        font-size: 20px;
        line-height: 1.3;
    }

    .media-card-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .media-read-more {
        font-size: 15px;
    }

    /* AI Section */
    .ai-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ai-headline {
        font-size: 32px;
    }

    /* Performance Section */
    .performance-section {
        padding: 60px 0;
    }

    .performance-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .performance-headline {
        font-size: 32px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Features Section */
    .features-section {
        padding: 60px 0;
    }

    .features-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .features-headline-left,
    .features-headline-right {
        font-size: 28px;
    }

    .features-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Automation Section */
    .automation-section {
        padding: 60px 0;
    }

    .automation-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .automation-nav-bar {
        flex-wrap: nowrap;
        gap: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .automation-nav-bar::-webkit-scrollbar {
        display: none;
    }

    .nav-tab {
        flex: 0 0 auto;
        min-width: fit-content;
        white-space: nowrap;
        font-size: 12px;
        padding: 10px 16px;
    }

    /* Themes Section */
    .themes-section {
        padding: 60px 0;
    }

    .themes-content {
        gap: 30px;
    }

    .themes-headline {
        font-size: 32px;
    }

    /* Selling Section */
    .selling-section {
        padding: 60px 0;
    }

    .selling-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .selling-headline {
        font-size: 32px;
    }

    .selling-right {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-headline {
        font-size: 32px;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-headline {
        font-size: 36px;
    }

    .pricing-subheadline {
        font-size: 24px;
    }

    .pricing-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-plans-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Enterprise Section */
    .enterprise-section {
        padding: 60px 0;
    }

    .enterprise-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Scale Section */
    .scale-section {
        padding: 60px 0;
    }

    .scale-heading {
        font-size: 32px;
    }

    .scale-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .main-headline {
        font-size: 28px;
    }

    .mission-headline {
        font-size: 24px;
    }

    .grow-brand-headline {
        font-size: clamp(28px, 6vw, 36px);
    }

    .grow-brand-description {
        font-size: 16px;
    }

    .grow-cards-column {
        gap: 20px;
    }

    /* Remove floating offsets on small mobile */
    .grow-card-float-up,
    .grow-card-float-center,
    .grow-card-float-down {
        transform: translateY(0) !important;
        margin-top: 0;
        margin-bottom: 0;
    }

    .why-choose-title,
    .media-section-title {
        font-size: 24px;
    }

    .grow-value-card {
        padding: 32px 28px;
    }

    .grow-value-title {
        font-size: 18px;
    }

    .grow-value-description {
        font-size: 14px;
    }

    .why-choose-card {
        padding: 28px 24px;
    }

    .why-choose-card-hero .why-choose-card-title {
        font-size: 22px;
    }

    .why-choose-card-hero .why-choose-card-description {
        font-size: 15px;
    }

    .why-choose-card-title {
        font-size: 18px;
    }

    .why-choose-card-description {
        font-size: 14px;
    }

    .media-card {
        padding: 24px 20px;
    }

    .btn-start-trial,
    .btn-get-in-touch {
        padding: 12px 24px;
        font-size: 15px;
    }

    /* Selling Section - Very Small Mobile */
    .selling-section {
        padding: 30px 0;
    }

    .selling-section .container {
        padding: 0 10px;
    }

    .selling-headline {
        font-size: 20px;
    }

    .selling-content {
        min-height: auto;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Mobile: remove center image + connecting lines */
    .selling-center-image,
    .connecting-lines-svg {
        display: none !important;
    }

    /* Cards: normal stacked layout */
    .selling-card {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto;
        max-height: none;
        padding: 16px;
        border-radius: 14px;
    }

    .selling-card-top-left,
    .selling-card-top-right,
    .selling-card-bottom-left,
    .selling-card-bottom-right {
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
    }

    .card-title-selling {
        font-size: 15px;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .card-description-selling {
        font-size: 14px;
        line-height: 1.5;
    }

    .connecting-lines-svg {
        opacity: 0.5;
    }
}

/* ============================================
   PRIVACY POLICY PAGE STYLES
   ============================================ */

/* Privacy Hero Section */
/* Terms Hero Section - Premium Legal-Tech Design */
.terms-hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: #0a0a0a;
}

.terms-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(87, 0, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(2, 2, 65, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
    background-size: 100% 100%;
    opacity: 1;
}

.terms-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px);
    background-size: 100% 4px;
    pointer-events: none;
}

.terms-hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    z-index: 10;
}

/* Corner Accents */
.corner-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
    opacity: 0;
    animation: fadeInCorner 1s ease-out forwards;
}

.corner-top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 2px;
    animation-delay: 0.3s;
}

.corner-top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 2px;
    animation-delay: 0.4s;
}

.corner-bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 2px;
    animation-delay: 0.5s;
}

.corner-bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 2px;
    animation-delay: 0.6s;
}

@keyframes fadeInCorner {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Terms Hero Content */
.terms-hero-content {
    position: relative;
    text-align: center;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 1s ease-out 0.2s forwards;
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-hero-title {
    font-size: clamp(42px, 6vw, 88px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 24px 0;
    line-height: 1.1;
    letter-spacing: -2px;
    font-family: 'Satoshi';
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-hero-subtitle {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 48px 0;
    line-height: 1.6;
    letter-spacing: -0.3px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Indicators */
.terms-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 56px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpIn 1s ease-out 0.5s forwards;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.trust-badge span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2px;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUpIn 1s ease-out 0.8s forwards;
    z-index: 10;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(12px);
        opacity: 0.3;
    }
}

.scroll-text {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Legacy Privacy Hero Styles (for backward compatibility) */
/* Privacy Policy Hero Section - Modern Legal-Tech Design */
.privacy-hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: #0a0a0a;
}

.privacy-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(87, 0, 153, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
    background-size: 100% 100%;
    opacity: 1;
}

.privacy-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.008) 2px, rgba(255, 255, 255, 0.008) 4px);
    background-size: 100% 4px;
    pointer-events: none;
}

.privacy-hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    z-index: 10;
}

/* Privacy Corner Accents */
.privacy-corner-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    opacity: 0;
    animation: privacyFadeInCorner 1s ease-out forwards;
}

.privacy-corner-top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 2px;
    animation-delay: 0.3s;
}

.privacy-corner-top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 2px;
    animation-delay: 0.4s;
}

.privacy-corner-bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 2px;
    animation-delay: 0.5s;
}

.privacy-corner-bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 2px;
    animation-delay: 0.6s;
}

@keyframes privacyFadeInCorner {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Privacy Hero Content */
.privacy-hero-content {
    position: relative;
    text-align: center;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: privacyFadeUpIn 1s ease-out 0.2s forwards;
}

@keyframes privacyFadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-hero-title {
    font-size: clamp(42px, 6vw, 88px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 24px 0;
    line-height: 1.1;
    letter-spacing: -2px;
    font-family: 'Satoshi'; 
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-hero-subtitle {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 48px 0;
    line-height: 1.6;
    letter-spacing: -0.3px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Privacy Trust Indicators */
.privacy-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 56px;
    opacity: 0;
    transform: translateY(20px);
    animation: privacyFadeUpIn 1s ease-out 0.5s forwards;
}

.privacy-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-trust-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.privacy-trust-badge svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.privacy-trust-badge span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2px;
}

/* Last Updated Meta */
.privacy-last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2px;
    opacity: 0;
    animation: privacyFadeUpIn 1s ease-out 0.7s forwards;
}

.privacy-last-updated svg {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

/* Privacy Scroll Down Indicator */
.privacy-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: privacyFadeUpIn 1s ease-out 0.8s forwards;
    z-index: 10;
}

.privacy-scroll-mouse {
    width: 24px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.privacy-scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: privacyScrollWheel 2s ease-in-out infinite;
}

@keyframes privacyScrollWheel {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(12px);
        opacity: 0.3;
    }
}

.privacy-scroll-text {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Legacy Privacy Hero Styles (for backward compatibility) */
.privacy-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.privacy-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

/* Privacy Content Section */
/* Terms Content Section - Modern Legal-Tech Design */
.terms-content-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.terms-content-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Glassmorphism Table of Contents */
.terms-toc {
    position: sticky;
    top: 120px;
    height: fit-content;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-toc:hover {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.toc-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.toc-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
}

.toc-indicator-line {
    height: 2px;
    background: linear-gradient(90deg, #570099 0%, #020241 100%);
    border-radius: 2px;
    width: 40px;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #4b5563;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.toc-link-number {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    min-width: 24px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.toc-link-text {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.toc-link-indicator {
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #570099 0%, #020241 100%);
    border-radius: 2px;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.toc-link:hover {
    background: rgba(87, 0, 153, 0.04);
    color: #1f2937;
}

.toc-link:hover .toc-link-number {
    color: #570099;
}

.toc-link.active {
    background: rgba(87, 0, 153, 0.08);
    color: #000000;
    font-weight: 600;
}

.toc-link.active .toc-link-number {
    color: #570099;
    font-weight: 700;
}

.toc-link.active .toc-link-indicator {
    height: 20px;
    opacity: 1;
}

.toc-link-highlight.active {
    background: rgba(16, 185, 129, 0.1);
}

.toc-link-highlight.active .toc-link-number {
    color: #10b981;
}

.toc-link-highlight.active .toc-link-indicator {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.toc-link-authority.active {
    background: rgba(87, 0, 153, 0.12);
}

.toc-link-authority.active .toc-link-number {
    color: #570099;
    font-size: 12px;
}

/* Terms Content Sections */
.terms-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.terms-section {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    scroll-margin-top: 120px;
}

.terms-section:nth-child(1) { animation-delay: 0.1s; }
.terms-section:nth-child(2) { animation-delay: 0.15s; }
.terms-section:nth-child(3) { animation-delay: 0.2s; }
.terms-section:nth-child(4) { animation-delay: 0.25s; }
.terms-section:nth-child(5) { animation-delay: 0.3s; }
.terms-section:nth-child(6) { animation-delay: 0.35s; }
.terms-section:nth-child(7) { animation-delay: 0.4s; }
.terms-section:nth-child(8) { animation-delay: 0.45s; }
.terms-section:nth-child(9) { animation-delay: 0.5s; }
.terms-section:nth-child(10) { animation-delay: 0.55s; }
.terms-section:nth-child(11) { animation-delay: 0.6s; }
.terms-section:nth-child(12) { animation-delay: 0.65s; }
.terms-section:nth-child(13) { animation-delay: 0.7s; }

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

/* Section Number Watermark */
.section-number {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 120px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    pointer-events: none;
    font-family: 'Satoshi'; 
    letter-spacing: -4px;
}

.section-content {
    position: relative;
    z-index: 1;
}

/* Section Icon */
.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(87, 0, 153, 0.1) 0%, rgba(2, 2, 65, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 24px;
    color: #570099;
    transition: all 0.3s ease;
}

.section-icon svg {
    width: 24px;
    height: 24px;
}

/* Standard Section Style */
.terms-section-standard {
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.terms-section-standard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #570099 0%, #020241 100%);
    border-radius: 16px 0 0 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.terms-section-standard:hover {
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transform: translateY(-2px);
}

.terms-section-standard:hover::before {
    opacity: 1;
}

/* Highlighted Section Style (Refund Policy) */
.terms-section-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.03) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 
        0 4px 16px rgba(16, 185, 129, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.terms-section-highlight .section-number {
    color: rgba(16, 185, 129, 0.08);
}

.section-icon-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
    color: #10b981;
}

.terms-section-highlight:hover {
    box-shadow: 
        0 8px 32px rgba(16, 185, 129, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.95) inset;
    transform: translateY(-3px);
}

/* Authority Section Style (Governing Law) */
.terms-section-authority {
    background: linear-gradient(135deg, rgba(87, 0, 153, 0.08) 0%, rgba(2, 2, 65, 0.05) 100%);
    border: 2px solid rgba(87, 0, 153, 0.2);
    box-shadow: 
        0 8px 32px rgba(87, 0, 153, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 0 0 1px rgba(87, 0, 153, 0.1) inset;
}

.terms-section-authority .section-number {
    color: rgba(87, 0, 153, 0.1);
    font-size: 140px;
}

.section-icon-authority {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(87, 0, 153, 0.2) 0%, rgba(2, 2, 65, 0.15) 100%);
    color: #570099;
    border: 1px solid rgba(87, 0, 153, 0.2);
}

.section-icon-authority svg {
    width: 28px;
    height: 28px;
}

.terms-section-authority:hover {
    box-shadow: 
        0 12px 40px rgba(87, 0, 153, 0.18),
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 0 0 1px rgba(87, 0, 153, 0.15) inset;
    transform: translateY(-4px);
}

/* Header Section Style */
.terms-section-header {
    background: linear-gradient(135deg, rgba(87, 0, 153, 0.03) 0%, rgba(2, 2, 65, 0.02) 100%);
    border: 1px solid rgba(87, 0, 153, 0.1);
}

/* Section Typography */
.section-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.section-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.8;
    margin: 0 0 16px 0;
}

.section-text:last-child {
    margin-bottom: 0;
}

/* Terms List */
.terms-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
}

.terms-list li svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.terms-section-highlight .terms-list li svg {
    color: #10b981;
}

/* Structured Information Groups */
.info-group {
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.info-group:first-of-type {
    margin-top: 16px;
    padding-top: 0;
    border-top: none;
}

.info-group-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    padding: 8px 0;
}

.info-item svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.terms-section-highlight .info-item svg {
    color: #10b981;
}

.section-text-emphasis {
    font-weight: 600;
    color: #1f2937;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.05);
    border-left: 3px solid #10b981;
    border-radius: 6px;
    margin-top: 16px;
}

/* Privacy Content Section - Uses Same Modern Styles as Terms */
.privacy-content-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.privacy-content-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Privacy TOC uses same glassmorphism style as terms */
.privacy-toc {
    position: sticky;
    top: 120px;
    height: fit-content;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-toc:hover {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

/* Responsive Styles for Privacy Content Section */
@media (max-width: 1024px) {
    .privacy-content-wrapper {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }

    .privacy-toc {
        padding: 24px 20px;
    }

    .privacy-card {
        padding: 36px 28px;
    }
}

@media (max-width: 768px) {
    .privacy-content-section {
        padding: 60px 0;
    }

    .privacy-content-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }

    .privacy-toc {
        position: static;
        order: 1;
        max-height: none;
        width: 100%;
    }

    .privacy-content {
        order: 2;
        width: 100%;
    }

    .privacy-card {
        padding: 28px 20px;
        border-radius: 16px;
    }
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.privacy-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.privacy-card-title {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.privacy-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.privacy-card-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.privacy-card-text:last-child {
    margin-bottom: 0;
}

.privacy-subheading {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 20px 0 12px 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.privacy-list li {
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #000000;
    font-weight: bold;
}

.terms-refund-card {
    background-color: #ccfbf1;
}

/* Contact Section - How You Can Reach Us */
.contact-section {
    padding: 120px 0;
    background-color: #0a0a0a;
}

.contact-section-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.contact-section-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin: 0 0 60px 0;
    opacity: 0.9;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-heading {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.contact-detail {
    font-size: 16px;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

.contact-button-container {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.btn-get-in-touch-contact {
    background: linear-gradient(135deg, #570099 0%, #020241 100%);
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-get-in-touch-contact:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
}

/* Modern SaaS Contact Hub Section */
.contact-hub-section {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(87, 0, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(2, 2, 65, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.contact-hub-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px);
    background-size: 100% 4px;
    pointer-events: none;
    opacity: 0.3;
}

.contact-hub-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-hub-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hub-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Contact Card with Glow */
.contact-hub-card {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 80px rgba(87, 0, 153, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-hub-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(87, 0, 153, 0.4), rgba(2, 2, 65, 0.4), rgba(87, 0, 153, 0.4));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(20px);
}

.contact-hub-card:hover::before {
    opacity: 0.6;
}

.contact-hub-card:hover {
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 0 100px rgba(87, 0, 153, 0.3);
    transform: translateY(-4px);
}

/* Contact Mini-Cards Grid */
.contact-mini-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-mini-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #570099 0%, #020241 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-mini-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-mini-card:hover::before {
    transform: scaleX(1);
}

.mini-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(87, 0, 153, 0.2) 0%, rgba(2, 2, 65, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.contact-mini-card:hover .mini-card-icon {
    background: linear-gradient(135deg, rgba(87, 0, 153, 0.3) 0%, rgba(2, 2, 65, 0.3) 100%);
    transform: scale(1.05);
    color: #ffffff;
}

.mini-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.mini-card-detail {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.mini-card-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

/* Trust Signals */
.contact-trust-signals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 32px 0;
    margin-bottom: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-signal-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.trust-signal-item svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.trust-signal-item:hover {
    color: rgba(255, 255, 255, 0.9);
}

.trust-signal-item:hover svg {
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Button */
.contact-hub-cta {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn-contact-hub {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #570099 0%, #020241 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px rgba(87, 0, 153, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-contact-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-contact-hub:hover::before {
    left: 100%;
}

.btn-contact-hub:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(87, 0, 153, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    background: linear-gradient(135deg, #6b21a8 0%, #03035a 100%);
}

.btn-contact-hub:active {
    transform: translateY(0);
}

.btn-contact-hub svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

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

.btn-contact-hub span {
    position: relative;
    z-index: 1;
}

/* Responsive Styles for Terms Content Section */
@media (max-width: 1024px) {
    .terms-content-wrapper {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }

    .terms-toc {
        padding: 24px 20px;
    }

    .terms-section {
        padding: 40px 32px;
    }

    .section-number {
        font-size: 100px;
        top: 20px;
        right: 24px;
    }
}

@media (max-width: 768px) {
    .terms-content-section {
        padding: 60px 0;
    }

    .terms-content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .terms-toc {
        position: static;
        order: 2;
        max-height: none;
    }

    .terms-content {
        order: 1;
    }

    .terms-section {
        padding: 32px 24px;
    }

    .section-number {
        font-size: 80px;
        top: 16px;
        right: 20px;
    }

    .section-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
    }

    .section-icon svg {
        width: 20px;
        height: 20px;
    }

    .section-icon-authority {
        width: 48px;
        height: 48px;
    }

    .section-icon-authority svg {
        width: 24px;
        height: 24px;
    }

    .terms-section-authority .section-number {
        font-size: 100px;
    }
}

/* Responsive Styles for Terms Hero Section */
@media (max-width: 1024px) {
    .terms-hero-section {
        min-height: 75vh;
        padding: 120px 0 80px;
    }

    .terms-hero-container {
        padding: 60px 30px;
    }

    .corner-accent {
        width: 50px;
        height: 50px;
    }

    .terms-trust-indicators {
        gap: 20px;
    }

    .trust-badge {
        padding: 10px 16px;
    }

    .trust-badge span {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .terms-hero-section {
        min-height: 70vh;
        padding: 100px 0 60px;
    }

    .terms-hero-container {
        padding: 50px 20px;
    }

    .corner-accent {
        width: 40px;
        height: 40px;
    }

    .terms-trust-indicators {
        flex-direction: column;
        gap: 16px;
        margin-top: 40px;
    }

    .trust-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .scroll-indicator {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .terms-hero-section {
        min-height: 65vh;
        padding: 80px 0 50px;
    }

    .terms-hero-container {
        padding: 40px 16px;
    }

    .corner-accent {
        width: 30px;
        height: 30px;
    }

    .terms-trust-indicators {
        margin-top: 32px;
    }

    .trust-badge {
        padding: 8px 14px;
    }

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

    .trust-badge span {
        font-size: 12px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-mouse {
        width: 20px;
        height: 32px;
    }
}

/* Responsive Styles for Privacy Hero Section */
@media (max-width: 1024px) {
    .privacy-hero-section {
        min-height: 75vh;
        padding: 120px 0 80px;
    }

    .privacy-hero-container {
        padding: 60px 30px;
    }

    .privacy-corner-accent {
        width: 50px;
        height: 50px;
    }

    .privacy-trust-indicators {
        gap: 20px;
    }

    .privacy-trust-badge {
        padding: 10px 16px;
    }

    .privacy-trust-badge span {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .privacy-hero-section {
        min-height: 70vh;
        padding: 100px 0 60px;
    }

    .privacy-hero-container {
        padding: 50px 20px;
    }

    .privacy-corner-accent {
        width: 40px;
        height: 40px;
    }

    .privacy-trust-indicators {
        flex-direction: column;
        gap: 16px;
        margin-top: 40px;
    }

    .privacy-trust-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .privacy-scroll-indicator {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .privacy-hero-section {
        min-height: 65vh;
        padding: 80px 0 50px;
    }

    .privacy-hero-container {
        padding: 40px 16px;
    }

    .privacy-corner-accent {
        width: 30px;
        height: 30px;
    }

    .privacy-trust-indicators {
        margin-top: 32px;
    }

    .privacy-trust-badge {
        padding: 8px 14px;
    }

    .privacy-trust-badge svg {
        width: 16px;
        height: 16px;
    }

    .privacy-trust-badge span {
        font-size: 12px;
    }

    .privacy-last-updated {
        font-size: 12px;
        padding: 6px 12px;
    }

    .privacy-last-updated svg {
        width: 12px;
        height: 12px;
    }

    .privacy-scroll-indicator {
        bottom: 20px;
    }

    .privacy-scroll-mouse {
        width: 20px;
        height: 32px;
    }
}

/* Responsive Styles for Contact Hub Section */
@media (max-width: 1024px) {
    .contact-hub-section {
        padding: 100px 0;
    }

    .contact-hub-card {
        padding: 40px;
    }

    .contact-mini-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-trust-signals {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .contact-hub-section {
        padding: 80px 0;
    }

    .contact-hub-header {
        margin-bottom: 40px;
    }

    .contact-hub-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .contact-mini-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }

    .contact-mini-card {
        padding: 24px;
    }

    .mini-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .contact-trust-signals {
        flex-direction: column;
        gap: 16px;
        padding: 24px 0;
        margin-bottom: 24px;
    }

    .trust-signal-item {
        justify-content: center;
    }

    .btn-contact-hub {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hub-section {
        padding: 60px 0;
    }

    .contact-hub-card {
        padding: 24px 20px;
    }

    .contact-mini-card {
        padding: 20px;
    }

    .mini-card-title {
        font-size: 16px;
    }

    .mini-card-detail {
        font-size: 14px;
    }

    .btn-contact-hub {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Responsive Styles for Privacy Page (Legacy) */
@media (max-width: 1024px) {
    .privacy-frame-container {
        width: 95%;
        min-height: 400px;
    }

    .privacy-title {
        font-size: 56px;
    }

    .privacy-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .privacy-hero-section {
        padding: 80px 0;
        min-height: 60vh;
    }

    .privacy-frame-container {
        width: 98%;
        min-height: 350px;
    }

    .privacy-hero-content {
        padding: 60px 20px;
    }

    .privacy-title {
        font-size: 42px;
    }

    .privacy-subtitle {
        font-size: 18px;
    }

    .frame-top {
        gap: 6px;
        padding: 0 10px;
    }

    .frame-top .frame-segment {
        height: 3px;
        min-width: 20px;
    }

    .frame-left,
    .frame-right {
        gap: 6px;
        padding: 0 10px;
    }

    .frame-left .frame-segment,
    .frame-right .frame-segment {
        width: 3px;
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 32px;
    }

    .privacy-subtitle {
        font-size: 16px;
    }

    .privacy-hero-content {
        padding: 40px 16px;
    }

    /* Terms Content Section Responsive */
    .terms-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .terms-toc {
        position: static;
        order: 2;
        max-height: none;
    }

    .terms-content {
        order: 1;
    }

    .terms-section {
        padding: 32px 24px;
    }

    .section-number {
        font-size: 80px;
        top: 16px;
        right: 20px;
    }

    .section-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
    }

    .section-icon svg {
        width: 20px;
        height: 20px;
    }

    .section-icon-authority {
        width: 48px;
        height: 48px;
    }

    .section-icon-authority svg {
        width: 24px;
        height: 24px;
    }

    .terms-section-authority .section-number {
        font-size: 100px;
    }

    /* Privacy Content Section Responsive (Legacy) */
    .privacy-content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .privacy-toc {
        position: static;
        order: 1;
    }

    .privacy-content {
        order: 2;
    }

    .privacy-card {
        padding: 32px 24px;
    }

    .privacy-card-title {
        font-size: 28px;
    }

    .privacy-section-title {
        font-size: 24px;
    }

    /* Contact Section Responsive */
    .contact-section {
        padding: 80px 0;
    }

    .contact-section-title {
        font-size: 36px;
    }

    .contact-section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .contact-card {
        padding: 40px 32px;
    }

    .contact-card-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 32px;
    }

    .contact-column {
        gap: 32px;
    }

    .contact-heading {
        font-size: 20px;
    }

    .contact-detail {
        font-size: 15px;
    }

    .btn-get-in-touch-contact {
        width: 100%;
        padding: 14px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-section-title {
        font-size: 28px;
    }

    .contact-section-subtitle {
        font-size: 16px;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .contact-heading {
        font-size: 18px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Intro Section */
/* Contact Hero Section - Premium Editorial Layout */
.contact-hero-section {
    padding: 40px 0 40px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

/* Left: Content Block */
.contact-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.contact-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0;
}

.contact-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
    max-width: 540px;
}

.contact-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn-contact-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #2563eb;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-contact-hero-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-contact-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #2563eb;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-contact-hero-secondary:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: #2563eb;
    transform: translateY(-2px);
}

/* Right: Visual Block */
.contact-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    max-height: 500px;
    border-radius: 20px;
    object-fit: contain;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.contact-dashboard-mockup {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.dashboard-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.dashboard-dot:nth-child(1) {
    background: #ef4444;
}

.dashboard-dot:nth-child(2) {
    background: #f59e0b;
}

.dashboard-dot:nth-child(3) {
    background: #10b981;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-card {
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.dashboard-card-2 {
    height: 80px;
}

.dashboard-card-3 {
    height: 100px;
}

.btn-contact-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    border: none;
    cursor: pointer;
}

.btn-contact-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-contact-primary svg {
    transition: transform 0.3s ease;
}

.btn-contact-primary:hover svg {
    transform: translateX(2px);
}

.btn-contact-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #ffffff;
    color: #2563eb;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1.5px solid rgba(37, 99, 235, 0.2);
}

.btn-contact-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.4);
    background: rgba(37, 99, 235, 0.05);
}

.btn-contact-secondary svg {
    transition: transform 0.3s ease;
}

.btn-contact-secondary:hover svg {
    transform: translateX(2px);
}

/* Get In Touch Section */
.get-in-touch-section {
    padding: 0 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

/* Contact Info Section - Premium Glassmorphism Cards */
.contact-info-section {
    padding: 40px 0;
    background: #ffffff;
    position: relative;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1500px;
    margin: 0 auto;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-info-icon-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0.2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(20px);
}

.contact-info-card:hover .contact-info-icon-bg {
    opacity: 0.3;
    transform: scale(1.2);
}

.contact-info-card:hover .contact-info-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-icon-wrapper svg {
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-content {
    position: relative;
    z-index: 1;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.contact-info-text {
    font-size: 16px;
    color: #334155;
    margin: 0 0 8px 0;
    font-weight: 600;
    line-height: 1.5;
}

.contact-info-meta {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover .contact-info-meta {
    opacity: 1;
}

/* Card-specific gradient tints */
.contact-info-card-phone {
    background: linear-gradient(135deg, rgba(204, 251, 241, 0.3) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.contact-info-card-phone .contact-info-icon-bg {
    background: radial-gradient(circle, rgba(20, 184, 166, 0.4) 0%, transparent 70%);
}

.contact-info-card-phone .contact-info-icon-wrapper svg {
    color: #14b8a6;
}

.contact-info-card-email {
    background: linear-gradient(135deg, rgba(255, 244, 230, 0.4) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.contact-info-card-email .contact-info-icon-bg {
    background: radial-gradient(circle, rgba(251, 146, 60, 0.4) 0%, transparent 70%);
}

.contact-info-card-email .contact-info-icon-wrapper svg {
    color: #fb923c;
}

.contact-info-card-location {
    background: linear-gradient(135deg, rgba(254, 249, 195, 0.3) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.contact-info-card-location .contact-info-icon-bg {
    background: radial-gradient(circle, rgba(234, 179, 8, 0.4) 0%, transparent 70%);
}

.contact-info-card-location .contact-info-icon-wrapper svg {
    color: #eab308;
}

/* Responsive Styles for Contact Hero & Info Cards */
@media (max-width: 1024px) {
    .contact-hero-layout {
        gap: 60px;
    }

    .contact-hero-title {
        font-size: clamp(32px, 4.5vw, 48px);
    }

    .contact-info-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0 50px;
    }

    .contact-hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero-visual {
        order: -1;
    }

    .contact-hero-image {
        max-width: 100%;
        border-radius: 16px;
    }

    .contact-hero-title {
        font-size: clamp(28px, 6vw, 42px);
    }

    .contact-hero-description {
        font-size: 16px;
    }

    .contact-hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn-contact-hero-primary,
    .btn-contact-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .contact-info-section {
        padding: 40px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-info-card {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        padding: 40px 0 32px;
    }

    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-description {
        font-size: 15px;
    }

    .contact-info-card {
        padding: 24px;
        border-radius: 20px;
    }

    .contact-info-icon-wrapper {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .contact-info-title {
        font-size: 18px;
    }

    .contact-info-text {
        font-size: 15px;
    }

    .contact-info-meta {
        font-size: 13px;
    }
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    border-color: rgba(37, 99, 235, 0.15);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.contact-card:hover .contact-card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-icon-wrapper svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.contact-card-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Card Background Colors with Premium Gradients */
.contact-card-phone {
    background: linear-gradient(135deg, rgba(204, 251, 241, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.contact-card-phone .contact-card-icon-wrapper {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(20, 184, 166, 0.05) 100%);
    color: #14b8a6;
}

.contact-card-email {
    background: linear-gradient(135deg, rgba(255, 244, 230, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.contact-card-email .contact-card-icon-wrapper {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(251, 146, 60, 0.05) 100%);
    color: #fb923c;
}

.contact-card-location {
    background: linear-gradient(135deg, rgba(254, 249, 195, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.contact-card-location .contact-card-icon-wrapper {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0.05) 100%);
    color: #eab308;
}

/* Contact Main Section */
.contact-main-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.contact-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Why Contact Us Section */
.contact-why-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-contact-title {
    font-size: 42px;
    font-weight: 800;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.why-contact-subtitle {
    font-size: 18px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.contact-reasons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-reason-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.contact-reason-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(37, 99, 235, 0.15);
}

.contact-reason-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-reason-item:hover .contact-reason-icon-wrapper {
    transform: scale(1.1);
}

.contact-reason-icon-wrapper svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.reason-icon-demo {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #ef4444;
}

.reason-icon-pricing {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0.05) 100%);
    color: #eab308;
}

.reason-icon-tech {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    color: #2563eb;
}

.reason-icon-partnership {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    color: #a855f7;
}

.contact-reason-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.contact-reason-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.contact-reason-description {
    font-size: 15px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.contact-trust-line {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    font-size: 15px;
    color: #166534;
}

.contact-trust-line svg {
    width: 16px;
    height: 16px;
    color: #22c55e;
    flex-shrink: 0;
}

.contact-trust-line strong {
    font-weight: 700;
    color: #15803d;
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    justify-content: flex-end;
}

.contact-form-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.contact-form-title {
    font-size: 28px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.contact-form-subtitle {
    font-size: 16px;
    color: #666666;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Satoshi'; 
    color: #000000;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:hover,
.form-textarea:hover {
    border-color: #d1d5db;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background-color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Satoshi'; 
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.btn-send-message {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-send-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-send-message:active {
    transform: translateY(0);
}

.btn-send-message svg {
    transition: transform 0.3s ease;
}

.btn-send-message:hover svg {
    transform: translateX(2px);
}

.form-security {
    font-size: 14px;
    color: #666666;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-security svg {
    width: 16px;
    height: 16px;
    color: #22c55e;
    flex-shrink: 0;
}

/* Map Section */
.map-section {
    padding: 40px 0;
    background-color: #f9fafb;
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
    .contact-intro-title {
        font-size: 52px;
    }

    .contact-intro-description {
        font-size: 19px;
    }

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

    .contact-card {
        padding: 36px 28px;
    }

    .contact-main-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-section {
        justify-content: center;
    }

    .contact-form-card {
        max-width: 100%;
    }

    .why-contact-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-intro-section {
        padding: 60px 0 40px;
        /* Mobile scrolling fixes */
        overflow: visible;
        min-height: auto;
        position: relative;
        width: 100%;
        max-width: 100%;
    }

    .contact-intro-title {
        font-size: 40px;
        letter-spacing: -0.02em;
    }

    .contact-intro-description {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .contact-intro-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn-contact-primary,
    .btn-contact-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .get-in-touch-section {
        padding: 0 0 60px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 32px 24px;
        border-radius: 18px;
    }

    .contact-card-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .contact-card-icon-wrapper svg {
        width: 22px;
        height: 22px;
    }

    .contact-card-title {
        font-size: 20px;
    }

    .contact-card-text {
        font-size: 15px;
    }

    .contact-main-section {
        padding: 60px 0;
    }

    .contact-main-wrapper {
        gap: 40px;
    }

    .why-contact-title {
        font-size: 32px;
        letter-spacing: -0.02em;
    }

    .why-contact-subtitle {
        font-size: 16px;
    }

    .contact-reasons {
        gap: 16px;
    }

    .contact-reason-item {
        padding: 18px;
        gap: 14px;
    }

    .contact-reason-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .contact-reason-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }

    .contact-reason-title {
        font-size: 17px;
    }

    .contact-reason-description {
        font-size: 14px;
    }

    .contact-trust-line {
        padding: 14px 18px;
        font-size: 14px;
    }

    .contact-form-card {
        padding: 32px 24px;
        border-radius: 18px;
    }

    .contact-form-title {
        font-size: 24px;
    }

    .contact-form-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-input,
    .form-textarea {
        padding: 12px 14px;
        font-size: 15px;
    }

    .btn-send-message {
        padding: 14px 28px;
        font-size: 15px;
    }

    .map-section {
        padding: 60px 0;
    }

    .map-container iframe {
        height: 400px;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog Title Section */
/* Modern Blog Hero Section */
.blog-hero-section {
    padding: 40px 0 40px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.blog-hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: #4b5563;
    margin: 0 0 40px 0;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Blog Hero CTAs */
.blog-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-blog-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #570099 0%, #020241 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(87, 0, 153, 0.2);
}

.btn-blog-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(87, 0, 153, 0.3);
}

.btn-blog-primary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-blog-primary:hover svg {
    transform: translateX(2px);
}

.btn-blog-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    background: #ffffff;
    transition: all 0.3s ease;
}

.btn-blog-secondary:hover {
    border-color: rgba(0, 0, 0, 0.2);
    background: #fafbfc;
    transform: translateY(-1px);
}

/* Blog Trust Signals */
.blog-trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.blog-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.blog-trust-item svg {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
}

/* Blog Posts Section - Premium SaaS Design */
.blog-posts-section {
    padding: 40px 0 40px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
}

/* Featured Insight Hero */
.blog-featured-insight {
    margin-bottom: 80px;
}

.blog-featured-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.4s ease;
}

.blog-featured-card:hover {
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.04);
}

.blog-featured-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-featured-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: fit-content;
}

.blog-featured-headline {
    font-size: clamp(42px, 5vw, 48px);
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.blog-featured-description {
    font-size: 19px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    max-width: 100%;
}

.blog-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #7c3aed;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    margin-top: 8px;
}

.blog-featured-cta:hover {
    color: #6366f1;
    gap: 12px;
}

.blog-featured-cta svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-featured-cta:hover svg {
    transform: translateX(4px);
}

.blog-featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-dashboard-mockup {
    width: 100%;
    max-width: 520px;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.blog-featured-card:hover .blog-dashboard-mockup {
    transform: scale(1.03);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}

.blog-featured-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.blog-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 2px 6px rgba(0, 0, 0, 0.02);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 8px 24px rgba(124, 58, 237, 0.12),
        0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(124, 58, 237, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f9fafb;
    position: relative;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

/* Blog Image Placeholders - Using gradients and images */
.blog-image-1 {
    background: linear-gradient(90deg, #22c55e 0%, #22c55e 50%, #dcfce7 50%, #dcfce7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-image-1::before {
    content: 'ZIPLOFY';
    position: absolute;
    left: 25%;
    font-weight: 800;
    font-size: 28px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-image-1::after {
    content: 'shopify';
    position: absolute;
    right: 25%;
    font-weight: 600;
    font-size: 24px;
    color: #16a34a;
}

.blog-image-2 {
    background-image: url('../img/2.jpg');
    background-size: cover;
    background-position: center;
}

.blog-image-3 {
    background-image: url('../img/3.jpg');
    background-size: cover;
    background-position: center;
}

.blog-image-4 {
    background-image: url('../img/4.jpg');
    background-size: cover;
    background-position: center;
}

.blog-image-5 {
    background-image: url('../img/5.jpg');
    background-size: cover;
    background-position: center;
}

.blog-image-6 {
    background-image: url('../img/1.jpg');
    background-size: cover;
    background-position: center;
}

.blog-image-7 {
    background-image: url('../img/mockup-website.jpg');
    background-size: cover;
    background-position: center;
}

/* Fallback for images that don't load */
.blog-image-placeholder {
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 14px;
}

.blog-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

/* Blog Category Badges */
.blog-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.blog-category-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: capitalize;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.blog-category-badge:hover {
    background: rgba(124, 58, 237, 0.15);
    color: #6366f1;
    transform: translateY(-1px);
}

.blog-card-title {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.3px;
}

.blog-card-description {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: auto;
}

.blog-date {
    font-size: 13px;
    font-weight: 400;
    color: #9ca3af;
}

.blog-card-cta {
    font-size: 15px;
    font-weight: 600;
    color: #7c3aed;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.blog-card-cta:hover {
    color: #6366f1;
    gap: 10px;
}

.blog-card-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-cta:hover svg {
    transform: translateX(3px);
}

/* Load More Button */
.blog-load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    border-color: rgba(0, 0, 0, 0.2);
    background: #fafbfc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-load-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-load-more:hover svg {
    transform: translateX(2px);
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.blog-cta-banner {
    display: block;
    background-color: #6b21a8;
    color: #ffffff;
    text-align: center;
    padding: 24px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.blog-cta-banner:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
}

.blog-cta-banner:last-child {
    margin-bottom: 0;
}

.cta-arrow {
    font-size: 24px;
    font-weight: 700;
}

/* Responsive Styles for Blog Page */
@media (max-width: 1024px) {
    .blog-hero-section {
        padding: 80px 0 60px;
    }

    .blog-hero-ctas {
        gap: 12px;
    }

    .blog-trust-signals {
        gap: 24px;
    }

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

    .blog-card-featured {
        grid-template-columns: 1fr;
    }

    .blog-card-featured .blog-card-image {
        min-height: 240px;
    }

    .blog-card-featured .blog-card-content {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 60px 0 48px;
    }

    .blog-hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn-blog-primary,
    .btn-blog-secondary {
        width: 100%;
        justify-content: center;
    }

    .blog-trust-signals {
        flex-direction: column;
        gap: 16px;
    }

    .blog-posts-section {
        padding: 60px 0 80px;
    }

    .blog-featured-insight {
        margin-bottom: 50px;
    }

    .blog-featured-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 32px;
    }

    .blog-featured-headline {
        font-size: 36px;
    }

    .blog-featured-description {
        font-size: 17px;
    }

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

    .blog-card-image {
        height: 200px;
    }

    .blog-card-content {
        padding: 24px;
    }

    .blog-card-title {
        font-size: 20px;
    }

    .blog-card-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .blog-featured-card {
        padding: 32px 24px;
        gap: 32px;
    }

    .blog-featured-headline {
        font-size: 32px;
    }

    .blog-featured-description {
        font-size: 16px;
    }

    .blog-dashboard-mockup {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-posts-section {
        padding: 50px 0 70px;
    }

    .blog-featured-insight {
        margin-bottom: 40px;
    }

    .blog-featured-card {
        padding: 24px 20px;
        gap: 28px;
    }

    .blog-featured-headline {
        font-size: 28px;
    }

    .blog-featured-description {
        font-size: 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .blog-card-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .blog-hero-section {
        padding: 48px 0 40px;
    }

    .blog-hero-title {
        font-size: 28px;
    }

    .blog-hero-subtitle {
        font-size: 15px;
    }

    .blog-trust-item {
        font-size: 13px;
    }

    .blog-card-featured .blog-card-image {
        min-height: 200px;
    }

    .blog-card-featured .blog-card-content {
        padding: 20px;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .blog-card-description {
        font-size: 14px;
    }

    .blog-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-load-more {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   BLOG DETAILS PAGE STYLES
   ============================================ */

/* ============================================
   BLOG DETAIL PAGE - MODERN SAAS DESIGN
   ============================================ */

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 9999;
}

.reading-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    width: 0%;
    transition: width 0.1s ease;
}

/* Comparison Hero Section */
/* Blog Detail Hero Section - Premium Editorial Layout */
.blog-detail-hero {
    padding: 40px 0 40px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 40%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.blog-detail-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.blog-detail-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
    max-width: 1500px;
    margin: 0 auto;
}

/* Left: Content Block */
.blog-detail-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-detail-category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #3b82f6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-detail-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0;
}

.blog-detail-description {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
    max-width: 580px;
}

/* Meta Information */
.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.blog-detail-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-detail-meta-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
}

.blog-detail-meta-value {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.blog-detail-meta-divider {
    width: 1px;
    height: 32px;
    background: #e2e8f0;
}

/* Subtle Divider */
.blog-detail-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, transparent 100%);
    margin-top: 8px;
    opacity: 0.3;
}

/* Right: Visual Block */
.blog-detail-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px;
}

.blog-detail-visual-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-detail-visual-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.blog-detail-card-primary {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(59, 130, 246, 0.2);
}

.blog-detail-card-secondary {
    background: rgba(255, 255, 255, 0.65);
}

.blog-detail-card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-detail-card-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-detail-logo-letter {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-detail-logo-icon {
    font-size: 28px;
}

.blog-detail-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.blog-detail-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-detail-feature-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

/* Blog Article Section */
.blog-article-section {
    padding: 60px 0 80px;
    background-color: #F8F9FB;
    min-height: 100vh;
}

.blog-article-layout {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

/* Table of Contents */
.article-toc {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    align-self: start;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    overflow-x: hidden;
    height: fit-content;
    z-index: 10;
}

.toc-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}

.toc-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.toc-link:hover {
    background-color: #f9fafb;
    color: #3b82f6;
}

.toc-link.active {
    background-color: #eff6ff;
    color: #3b82f6;
}

.toc-link-highlight {
    background-color: #fef3c7;
    color: #92400e;
}

.toc-link-number {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    min-width: 24px;
}

.toc-link.active .toc-link-number {
    color: #3b82f6;
}

.toc-link-text {
    flex: 1;
}

.toc-link-indicator {
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.toc-link.active .toc-link-indicator {
    height: 100%;
}

/* Article Content */
.blog-article-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.blog-article-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f3f4f6;
}

.blog-article-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.blog-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 16px;
}

.article-author {
    font-weight: 600;
    color: #000000;
}

.article-separator {
    color: #d1d5db;
}

.article-date {
    color: #6b7280;
}

.blog-article-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-category-badge {
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.article-category-badge:hover {
    background-color: #e5e7eb;
    color: #000000;
}

/* Article Sections */
.blog-article-content {
    line-height: 1.8;
}

.article-section {
    margin-bottom: 64px;
    position: relative;
    padding-left: 60px;
}

.section-number-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.section-content-wrapper {
    position: relative;
}

.article-section-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: #000000;
    margin: 0 0 24px 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-accent {
    width: 4px;
    height: 32px;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.article-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 24px 0 16px 0;
}

.article-paragraph {
    font-size: 17px;
    color: #374151;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

/* Platform Cards */
.platform-card-section {
    margin-bottom: 48px;
}

.platform-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
}

.platform-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.platform-card-featured {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.platform-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.platform-card-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.platform-card-featured .platform-card-number {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
}

.platform-card-title-wrapper {
    flex: 1;
    position: relative;
}

.platform-icon-wrapper {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #6b7280;
}

.platform-icon-featured {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
}

.platform-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.platform-featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.platform-intro {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 32px 0;
}

.platform-features-list {
    margin-bottom: 32px;
}

.platform-features-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 16px 0;
}

.platform-features-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.platform-features-items li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
}

.platform-features-items li svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.platform-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.highlight-box {
    padding: 20px;
    border-radius: 12px;
    border: 2px solid transparent;
}

.highlight-box-best {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #10b981;
}

.highlight-box-limitations {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #ef4444;
}

.highlight-box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.highlight-box-header svg {
    color: #10b981;
    flex-shrink: 0;
}

.highlight-box-limitations .highlight-box-header svg {
    color: #ef4444;
}

.highlight-box-title {
    font-size: 15px;
    font-weight: 700;
    color: #065f46;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-box-limitations .highlight-box-title {
    color: #991b1b;
}

.highlight-box-text {
    font-size: 15px;
    color: #047857;
    line-height: 1.6;
    margin: 0;
}

.highlight-box-limitations .highlight-box-text {
    color: #b91c1c;
}

.highlight-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.highlight-box-list li {
    font-size: 14px;
    color: #b91c1c;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.highlight-box-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.platform-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.platform-cta-btn:hover {
    background: #e5e7eb;
    color: #000000;
    transform: translateX(4px);
}

.platform-cta-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.platform-cta-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Comparison Table */
.comparison-table-section {
    margin-bottom: 64px;
    position: relative;
    padding-left: 60px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table th {
    padding: 16px 20px;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child {
    border-top-left-radius: 12px;
}

.comparison-table th:last-child {
    border-top-right-radius: 12px;
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 15px;
    color: #374151;
}

.comparison-table tbody tr:hover {
    background-color: #f9fafb;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #1f2937;
}

/* Recommendation / TL;DR Section */
.recommendation-section {
    margin-bottom: 64px;
    position: relative;
    padding-left: 60px;
}

.tldr-box {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 32px;
}

.tldr-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}

.tldr-header svg {
    color: #3b82f6;
}

.tldr-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.tldr-content {
    margin-bottom: 32px;
}

.tldr-text {
    font-size: 17px;
    color: #374151;
    line-height: 1.8;
    margin: 0 0 16px 0;
}

.tldr-text:last-child {
    margin-bottom: 0;
}

.tldr-text strong {
    color: #000000;
    font-weight: 700;
}

.tldr-cta {
    padding-top: 24px;
    border-top: 2px solid #f3f4f6;
}

.btn-tldr-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-tldr-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 90%;
    display: none;
    border: 2px solid #e5e7eb;
}

.floating-cta.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.floating-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.floating-cta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-cta-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-cta-title {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
}

.btn-floating-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-floating-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Related Articles Section - Modern Premium Design */
.related-articles-section {
    padding: 100px 0;
    background-color: #F8F9FB;
    position: relative;
}

.related-articles-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.related-articles-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: #000000;
    margin: 0 0 12px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.related-articles-subtitle {
    font-size: 17px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-article-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.related-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.related-article-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.related-article-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-article-card:hover .blog-image-placeholder {
    transform: scale(1.1);
}

.image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.related-article-card:hover .image-gradient-overlay {
    opacity: 1;
}

.related-article-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #3b82f6;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.related-article-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.related-article-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.related-article-card:hover .related-article-title {
    color: #3b82f6;
}

.related-article-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.related-article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #9ca3af;
    margin-top: auto;
    padding-top: 8px;
}

.related-article-date {
    font-weight: 500;
    color: #6b7280;
}

.related-article-separator {
    color: #d1d5db;
    font-weight: 600;
}

.related-article-category {
    font-weight: 500;
    color: #6b7280;
}

.related-article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #3b82f6;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.related-article-link svg {
    transition: transform 0.3s ease;
}

.related-article-link:hover {
    color: #2563eb;
    gap: 12px;
}

.related-article-link:hover svg {
    transform: translateX(4px);
}

/* Responsive Styles for Blog Details Page */
@media (max-width: 1024px) {
    .blog-article-layout {
        grid-template-columns: 240px 1fr;
        gap: 32px;
    }

    .article-toc {
        top: 100px;
        max-height: calc(100vh - 120px);
    }

    .blog-detail-hero-layout {
        gap: 60px;
    }

    .blog-detail-hero-visual {
        top: 100px;
    }

    .blog-article-wrapper {
        padding: 32px;
    }

    .platform-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }

    .highlight-box {
        padding: 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .highlight-box-title,
    .highlight-box-text,
    .highlight-box-list li {
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .related-articles-section {
        padding: 80px 0;
    }

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

@media (max-width: 768px) {
    .blog-detail-hero {
        padding: 60px 0 50px;
    }

    .blog-detail-hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-detail-hero-visual {
        position: static;
        order: -1;
    }

    .blog-detail-title {
        font-size: clamp(28px, 6vw, 42px);
    }

    .blog-detail-description {
        font-size: 16px;
    }

    .blog-detail-meta {
        gap: 12px;
    }

    .blog-detail-visual-card {
        padding: 24px;
    }

    .blog-article-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        min-width: 0;
    }

    .article-toc {
        position: static;
        max-height: none;
        order: -1;
        padding: 20px;
    }

    .blog-article-wrapper {
        padding: 26px 18px;
        border-radius: 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .blog-article-title,
    .article-section-title,
    .article-subtitle,
    .article-paragraph,
    .platform-card-title,
    .platform-intro,
    .platform-features-title,
    .platform-features-items li,
    .platform-features-items li span,
    .highlight-box-title,
    .highlight-box-text,
    .highlight-box-list li,
    .platform-featured-badge {
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    .blog-article-meta {
        flex-wrap: wrap;
        row-gap: 6px;
    }

    .blog-article-title {
        font-size: 30px;
        line-height: 1.18;
    }

    .article-section,
    .comparison-table-section,
    .recommendation-section {
        padding-left: 0;
    }

    .section-number-badge {
        position: static;
        margin-bottom: 20px;
    }

    .blog-article-wrapper {
        padding: 24px 20px;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .blog-article-content {
        max-width: 100%;
        overflow-x: hidden;
    }

    .platform-card-section {
        max-width: 100%;
        overflow-x: hidden;
    }

    .platform-card {
        padding: 24px 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .platform-card-header {
        flex-direction: column;
        gap: 16px;
        max-width: 100%;
    }

    .platform-card-title-wrapper {
        max-width: 100%;
        min-width: 0;
    }

    .platform-card-title {
        font-size: 22px;
        line-height: 1.3;
        max-width: 100%;
    }

    .platform-intro {
        font-size: 16px;
        max-width: 100%;
    }

    .platform-features-items li {
        font-size: 15px;
        max-width: 100%;
    }

    .platform-features-items li span {
        flex: 1;
        min-width: 0;
        max-width: 100%;
    }

    .comparison-table-wrapper {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        border-radius: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 640px;
    }

    .tldr-box {
        padding: 32px 24px;
    }

    .floating-cta {
        bottom: 16px;
        left: 16px;
        right: 16px;
        transform: none;
        max-width: none;
    }

    .floating-cta-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .btn-floating-cta {
        width: 100%;
        text-align: center;
    }

    .related-articles-section {
        padding: 60px 0;
    }

    .related-articles-header {
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .related-articles-title {
        font-size: 28px;
    }

    .related-articles-subtitle {
        font-size: 15px;
    }

    .related-articles-grid {
        display: flex;
        grid-template-columns: none;
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 24px;
        padding: 0 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .related-articles-grid::-webkit-scrollbar {
        display: none;
    }

    .related-article-card {
        flex: 0 0 calc(100% - 48px);
        max-width: calc(100% - 48px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .related-article-image-wrapper {
        height: 200px;
    }

    .related-article-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .blog-detail-hero {
        padding: 40px 0 32px;
    }

    .blog-detail-hero-layout {
        gap: 32px;
    }

    .blog-detail-title {
        font-size: 28px;
    }

    .blog-detail-description {
        font-size: 15px;
    }

    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .blog-detail-meta-divider {
        display: none;
    }

    .blog-detail-visual-card {
        padding: 20px;
    }

    .blog-detail-logo-letter {
        font-size: 28px;
    }

    .blog-detail-logo-text {
        font-size: 20px;
    }

    .blog-article-wrapper {
        padding: 24px 16px;
    }

    .blog-article-title {
        font-size: 28px;
    }

    .article-section-title {
        font-size: 22px;
    }

    .article-paragraph {
        font-size: 16px;
    }

    .platform-card {
        padding: 20px 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .platform-card-title {
        font-size: 18px;
        line-height: 1.3;
        max-width: 100%;
    }

    .platform-intro {
        font-size: 15px;
        max-width: 100%;
    }

    .platform-features-items li {
        font-size: 14px;
    }

    .platform-features-items li span {
        max-width: 100%;
    }

    .highlight-box {
        padding: 14px;
    }

    .highlight-box-title {
        font-size: 13px;
    }

    .highlight-box-text {
        font-size: 14px;
    }

    .highlight-box-list li {
        font-size: 13px;
    }

    .tldr-box {
        padding: 24px 20px;
    }

    .tldr-title {
        font-size: 20px;
    }

    .tldr-text {
        font-size: 16px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Small mobile devices - enhanced scrolling fixes */
    html, body {
        overflow-x: hidden;
        overflow-y: auto !important;
        width: 100%;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: auto;
    }
    
    .contact-intro-section {
        padding: 40px 0 30px;
        /* Mobile scrolling fixes - ensure no blocking */
        overflow: visible !important;
        min-height: auto !important;
        height: auto !important;
        position: relative;
        width: 100%;
        max-width: 100%;
        /* Prevent content clipping */
        contain: none;
        /* Prevent transform issues */
        transform: none !important;
        will-change: auto;
        z-index: 1;
    }
    
    .contact-intro-section::before,
    .contact-intro-section::after {
        pointer-events: none;
        position: absolute;
        z-index: 0;
    }
    
    .contact-intro-content {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        position: relative;
        z-index: 2;
        transform: none;
        will-change: auto;
        /* Stack vertically */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-intro-title,
    .contact-intro-description {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        position: relative;
        z-index: 1;
    }
    
    .contact-intro-section img {
        max-width: 100%;
        height: auto;
        display: block;
        position: relative;
        z-index: 1;
        transform: none;
        will-change: auto;
    }

    .contact-intro-title {
        font-size: 32px;
        letter-spacing: -0.02em;
    }

    .contact-intro-description {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .btn-contact-primary,
    .btn-contact-secondary {
        font-size: 15px;
        padding: 12px 24px;
    }

    .contact-card {
        padding: 28px 20px;
        gap: 20px;
    }

    .contact-card-icon-wrapper {
        width: 52px;
        height: 52px;
    }

    .contact-card-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }

    .contact-card-title {
        font-size: 19px;
    }

    .contact-card-text {
        font-size: 14px;
    }

    .contact-card-title {
        font-size: 18px;
    }

    .contact-card-text {
        font-size: 15px;
    }

    .contact-main-section {
        padding: 50px 0;
    }

    .contact-main-wrapper {
        gap: 32px;
    }

    .why-contact-title {
        font-size: 28px;
    }

    .why-contact-subtitle {
        font-size: 15px;
    }

    .contact-reason-item {
        padding: 16px;
        gap: 12px;
    }

    .contact-reason-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .contact-reason-icon-wrapper svg {
        width: 16px;
        height: 16px;
    }

    .contact-reason-title {
        font-size: 16px;
    }

    .contact-reason-description {
        font-size: 13px;
    }

    .contact-trust-line {
        padding: 12px 16px;
        font-size: 13px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .contact-form-title {
        font-size: 22px;
    }

    .contact-form-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .form-input,
    .form-textarea {
        padding: 12px;
        font-size: 14px;
    }

    .btn-send-message {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .privacy-content-wrapper {
        grid-template-columns: 240px 1fr;
        gap: 32px;
    }

    .privacy-toc {
        padding: 24px 20px;
    }

    .toc-title {
        font-size: 18px;
    }

    .toc-link {
        font-size: 13px;
        padding: 6px 10px;
        padding-left: 20px;
    }
}