/* static/css/landing.css - CSS Complet */

:root {
    --primary-color: #667eea;
    --primary-dark: #5a67d8;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --accent-secondary: #f5576c;
    --text-dark: #1a202c;
    --text-light: #718096;
    --text-muted: #64748b;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
    --border-light: #e2e8f0;
    --success-color: #48bb78;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-light: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Divider */
.section-divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light) 20%, var(--border-light) 80%, transparent);
}

/* Navigation - Blur with Gradient Fade */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: transparent;
    z-index: 1000;
    pointer-events: none;
}

.nav-container {
    pointer-events: auto;
}

/* Blur layer that fades out at bottom */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.2) 35%,
        rgba(0, 0, 0, 0.05) 60%,
        transparent 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    mask-image: linear-gradient(180deg, black 0%, black 25%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, black 0%, black 25%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    font-size: 1.15rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.9;
}

.nav-brand span {
    color: white;
    font-weight: 600;
    letter-spacing: -0.01em;
    -webkit-text-fill-color: white;
}

/* Logo Wrapper */
.logo-christmas-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}



.logo-sparkle {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.nav-brand:hover .logo-sparkle {
    transform: rotate(10deg);
}

.logo-sparkle path {
    fill: white;
}

.nav-menu {
    display: flex;
    gap: 0.25rem;
    padding: 0;
    border-radius: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: white;
}

.nav-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Buttons - Clean Style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Navbar buttons - always glass style */
.navbar .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.navbar .btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-weight: 600;
}

.navbar .btn-primary:hover {
    background: white;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
}

.btn-outline:hover {
    background: rgba(102, 126, 234, 0.08);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    border-radius: 10px;
}

/* Hero Section - Video Background */
.hero {
    position: relative;
    min-height: 105vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    color: white;
    padding-bottom: 8vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Video container */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Video overlay - gradient for readability */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(102, 126, 234, 0.6) 0%,
        rgba(118, 75, 162, 0.5) 50%,
        rgba(60, 40, 100, 0.7) 100%
    );
}

/* Fallback gradient if no video */
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(102, 126, 234, 0.9) 0%,
        rgba(118, 75, 162, 0.85) 50%,
        rgba(60, 40, 100, 0.95) 100%
    );
}

/* Hide galaxy elements when using video */
.hero-particles,
.bright-stars,
.shooting-star {
    display: none;
}



.hero-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    stroke: white;
    opacity: 0.9;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-static {
    display: block;
}

.hero-title-line1 {
    display: block;
    white-space: nowrap;
}

.hero-title-line2 {
    display: block;
    white-space: nowrap;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 0.2rem;
}

.gradient-text {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-container {
    display: block;
    height: 1.8em;
    margin-top: 0.2rem;
}

.static-who {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.typing-text {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.typing-cursor {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.highlight-text {
    color: rgba(255, 255, 255, 0.95);
    position: relative;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    max-width: 650px;
    font-weight: 400;
}

.hero-enterprise-tag {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
    border: 1px solid rgba(102, 126, 234, 0.4);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary.btn-hero {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline.btn-hero {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline.btn-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.feature-item svg {
    stroke: white;
    opacity: 0.9;
}

/* Trusted By Section */
.trusted-by-section {
    position: relative;
    z-index: 10;
    margin-top: -40px;
}

.trusted-by-bar {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trusted-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.trusted-logo:hover {
    opacity: 1;
}

.trusted-logo svg {
    height: 32px;
    width: auto;
    fill: currentColor;
    color: rgba(255, 255, 255, 0.9);
}

.trusted-logo .logo-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.5px;
}

.trusted-logo .logo-text.google-text {
    font-family: 'Product Sans', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
}

.trusted-logo .logo-text.ms-text {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    margin-left: 8px;
}

.trusted-logo .logo-text.publicis {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.trusted-logo .logo-text.box-text {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 1.9rem;
}

.trusted-logo .logo-text.shopify-text {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
}

/* Hero Visual - Minimalist */
.hero-visual {
    position: relative;
    height: 550px;
}

/* Demo Notice */
.demo-notice {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
    position: relative;
}

.demo-notice svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

/* Demo Info Badge */
.demo-info-badge {
    position: absolute;
    top: 3.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 240px;
    z-index: 10;
}

.demo-info-badge svg {
    flex-shrink: 0;
    stroke: var(--primary-color);
    width: 14px;
    height: 14px;
}

.demo-info-badge span {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-light);
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 2;
    color: #1a202c;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dashboard-header {
    background: rgba(248, 250, 252, 0.9);
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-nav {
    display: flex;
    gap: 0.75rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.nav-item.active {
    background: #667eea;
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.nav-item:not(.active) {
    color: #64748b;
    background: white;
    border: 1px solid #e2e8f0;
}

/* Create New Button - Make it clickable */
.nav-item.create-new-btn {
    cursor: pointer;
}

.nav-item.create-new-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
}

/* Tooltips */
.nav-item .tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a202c;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.nav-item .tooltip::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #1a202c;
}

.nav-item:hover .tooltip {
    opacity: 1;
}

.personas-grid-preview {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.persona-card-preview {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.persona-card-preview:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #f1f5f9;
}

.persona-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Persona Avatar with Image */
.persona-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
    flex-shrink: 0;
}

.persona-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.persona-info {
    flex: 1;
}

.persona-info h4 {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: #1a202c;
}

.persona-info p {
    font-size: 0.65rem;
    color: #64748b;
    margin: 0;
}

.persona-status {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin-left: auto;
}

.persona-status.online {
    background: #48bb78;
    box-shadow: 0 0 0 1.5px rgba(72, 187, 120, 0.3);
}

.chat-preview {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    background: #fafafa;
}

.chat-bubble {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-bubble.user {
    flex-direction: row-reverse;
}

.chat-bubble .avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.chat-bubble.ai .avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.chat-bubble.user .avatar {
    background: #e2e8f0;
    color: #64748b;
}

.chat-bubble .message {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    position: relative;
}

.chat-bubble.ai .message {
    border-bottom-left-radius: 4px;
}

.chat-bubble.user .message {
    background: #667eea;
    color: white;
    border-bottom-right-radius: 4px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.file-element {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    animation: float-files 6s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.file-element i {
    font-size: 1.5rem;
}

.file-element.pdf {
    top: 10%;
    right: -10%;
    color: #dc2626;
    animation-delay: 0s;
}

.file-element.excel {
    top: 30%;
    right: -15%;
    color: #059669;
    animation-delay: 1s;
}

.file-element.csv {
    bottom: 40%;
    left: -10%;
    color: #2563eb;
    animation-delay: 2s;
}

.file-element.powerpoint {
    bottom: 30%;
    right: -18%;
    color: #ea580c;
    animation-delay: 2.5s;
}

.file-element.word {
    bottom: 20%;
    left: -15%;
    color: #7c3aed;
    animation-delay: 3s;
}

@keyframes float-files {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Sections - Minimalist */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section - New Style */
.features-new {
    padding: 6rem 0;
    background: white;
}

.section-header-dark {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-dark h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-header-dark p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.feature-card-new {
    aspect-ratio: 1 / 1.1;
    min-height: 380px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background: var(--bg-light);
}

.feature-card-new:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Grid card with 4 images */
.feature-card-grid {
    background: transparent;
}

.feature-card-grid .feature-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    padding: 12px;
    height: calc(100% - 60px);
}

.feature-card-grid .grid-img {
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.feature-card-grid:hover .grid-img {
    transform: scale(1.02);
}

/* Single image card */
.feature-card-single {
    background-size: cover;
    background-position: center;
}

.feature-card-single::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(102, 126, 234, 0.1);
    z-index: 1;
}

.feature-card-single::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    z-index: 2;
}

.feature-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 3;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}

.feature-card-grid .feature-card-content {
    background: white;
    position: relative;
    padding: 1rem 1.25rem;
    border-radius: 0 0 24px 24px;
}

.feature-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0;
    font-style: italic;
}

.feature-card-grid .feature-card-content h3 {
    color: var(--text-dark);
    font-style: normal;
}

/* Card backgrounds */
.feature-card-blue {
    background: url('/static/images/bg/image_8189bc22_1764185093.png') center center / cover no-repeat;
}

.feature-card-pink {
    background: url('/static/images/bg/image_952a4091_1764185323.png') center center / cover no-repeat;
}

/* Achieve More Section */
.achieve-section {
    padding: 5rem 0;
    background: var(--bg-light);
    overflow: hidden;
}

.achieve-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.achieve-title {
    flex: 0 0 320px;
    position: sticky;
    top: 120px;
}

.achieve-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.achieve-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.achieve-subtitle strong {
    color: var(--text-dark);
}

.achieve-carousel {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.achieve-cards-wrapper {
    overflow: hidden;
    position: relative;
    /* Show only 2 cards at a time: 2 * 380px + gap */
    width: calc(2 * 380px + 1.5rem);
    flex-shrink: 0;
}

.achieve-cards {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s ease;
}

.achieve-card {
    flex: 0 0 380px;
    min-width: 380px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.achieve-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.achieve-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.achieve-card-image::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achieve-card-content {
    padding: 1.5rem;
}

.achieve-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.achieve-card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.achieve-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.achieve-dots .dot {
    width: 8px;
    height: 8px;
    background: var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.achieve-dots .dot.active {
    background: var(--primary-color);
    width: 32px;
    height: 4px;
    border-radius: 2px;
}

.achieve-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    flex-shrink: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.achieve-arrow:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .achieve-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    .achieve-title {
        position: static;
        flex: none;
    }
    .achieve-title h2 {
        font-size: 2rem;
    }
    .achieve-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 576px) {
    .achieve-card {
        flex: 0 0 280px;
    }
    .achieve-card-image {
        height: 180px;
    }
}

.features-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-description strong {
    color: var(--text-dark);
}

/* Old Features Section - Keep for compatibility */
.features {
    padding: 6rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    stroke: white;
    width: 24px;
    height: 24px;
}

.feature-icon i {
    font-size: 1.25rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.supported-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.format-tag {
    background: rgba(102, 126, 234, 0.08);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.format-tag:hover {
    background: var(--primary-color);
    color: white;
}

/* How It Works - Minimalist */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 auto 1.25rem;
}

.step h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Use Cases - Minimalist */
.use-cases {
    padding: 6rem 0;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.use-case {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.use-case-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.use-case-icon svg {
    stroke: white;
    width: 24px;
    height: 24px;
}

.use-case-icon i {
    font-size: 1.5rem;
    color: white;
}

.use-case h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.use-case p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA Section - New Image Style */
.cta-section-new {
    padding: 4rem 2rem;
    background: white;
}

.cta-section-new .container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 1;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.6) 100%);
    z-index: 1;
}

.cta-button-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.cta-pill-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 4rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 60px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.cta-pill-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .cta-image-wrapper {
        aspect-ratio: 2.5 / 1;
        max-height: 280px;
    }

    .cta-pill-button {
        padding: 1rem 3rem;
        font-size: 1.1rem;
    }
}

/* Agentic Capabilities Section */
.capabilities-section {
    background: var(--bg-light);
    padding: 6rem 2rem;
    position: relative;
}

.capabilities-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.capabilities-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.capabilities-landing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Different sizes for cards */
.capability-landing-item:nth-child(1) { grid-column: span 2; }
.capability-landing-item:nth-child(2) { grid-column: span 1; }
.capability-landing-item:nth-child(3) { grid-column: span 1; }
.capability-landing-item:nth-child(4) { grid-column: span 1; }
.capability-landing-item:nth-child(5) { grid-column: span 2; }
.capability-landing-item:nth-child(6) { grid-column: span 1; }
.capability-landing-item:nth-child(7) { grid-column: span 1; }
.capability-landing-item:nth-child(8) { grid-column: span 1; }
.capability-landing-item:nth-child(9) { grid-column: span 2; }

.capability-landing-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.capability-landing-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.capability-landing-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 12px;
    color: white;
}

.capability-landing-content {
    flex: 1;
}

.capability-landing-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.capability-landing-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .capabilities-landing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .capability-landing-item:nth-child(1),
    .capability-landing-item:nth-child(5),
    .capability-landing-item:nth-child(9) { grid-column: span 2; }
    .capability-landing-item:nth-child(2),
    .capability-landing-item:nth-child(3),
    .capability-landing-item:nth-child(4),
    .capability-landing-item:nth-child(6),
    .capability-landing-item:nth-child(7),
    .capability-landing-item:nth-child(8) { grid-column: span 1; }
}

@media (max-width: 576px) {
    .capabilities-section .section-title {
        font-size: 1.75rem;
    }
    .capabilities-landing-grid {
        grid-template-columns: 1fr;
    }
    .capability-landing-item,
    .capability-landing-item:nth-child(1),
    .capability-landing-item:nth-child(5),
    .capability-landing-item:nth-child(9) {
        grid-column: span 1;
    }
    .capability-landing-item {
        padding: 1.25rem;
    }
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 5rem 2rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.faq-list {
    max-width: 900px;
}

.faq-item {
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.35rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.25rem;
    }

    .faq-question {
        font-size: 1.15rem;
        padding: 1.25rem 0;
    }
}

/* Footer - Minimalist */
.footer {
    background: white;
    color: var(--text-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 1rem 0 2rem;
    font-size: 0.9rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.footer-logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo .logo-sparkle {
    width: 20px;
    height: 20px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.85rem;
}

.footer-compliance {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: default;
}

.compliance-badge:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.compliance-badge svg {
    color: #667eea;
    flex-shrink: 0;
}

.compliance-badge span {
    font-weight: 500;
    white-space: nowrap;
}

.footer-powered {
    color: var(--text-light);
    font-size: 0.85rem;
}

.footer-powered strong {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .steps::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .dashboard-preview {
        margin: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-card-content h3 {
        font-size: 1.2rem;
    }

    .section-header-dark h2 {
        font-size: 2rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-compliance {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .compliance-badge {
        width: 100%;
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--accent-color);
    color: white;
}

::-moz-selection {
    background: var(--accent-color);
    color: white;
}

/* Integrations Section */
.integrations-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.integrations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

@media (max-width: 1200px) {
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.integration-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.integration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.integration-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.integration-logo {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--bg-gray);
    transition: all 0.3s ease;
}

.integration-card:hover .integration-logo {
    transform: scale(1.1);
}

.integration-logo.google {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 100%);
}

.integration-logo.microsoft {
    background: linear-gradient(135deg, #f8fafc 0%, #fff4e6 100%);
}

.integration-logo.box {
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.integration-logo.shopify {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5e9 100%);
}

.integration-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.integration-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.integration-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.integration-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-light);
}

.integration-features li:first-child {
    border-top: none;
    padding-top: 0;
}

.integration-features li svg {
    flex-shrink: 0;
    color: var(--success-color);
}

.integration-cta {
    margin-top: 3rem;
    text-align: center;
}

.integration-note {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 0.9rem;
    border: 1px solid #d0e1ff;
}

.integration-note svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* Responsive Design for Integrations */
@media (max-width: 768px) {
    .integrations-section {
        padding: 4rem 0;
    }

    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .integration-card {
        padding: 1.5rem;
    }

    .integration-logo {
        width: 56px;
        height: 56px;
    }

    .integration-header h3 {
        font-size: 1.25rem;
    }

    .integration-note {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    /* Trusted By - Mobile */
    .trusted-by-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .trusted-logos {
        gap: 1.5rem;
    }

    .trusted-logo svg {
        height: 20px;
    }

    .trusted-logo .logo-text {
        font-size: 0.95rem;
    }
}

/* Coming Soon Modal */
.coming-soon-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.coming-soon-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: 10% auto;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.coming-soon-close {
    color: #aaa;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.coming-soon-close:hover,
.coming-soon-close:focus {
    color: #667eea;
}

.coming-soon-icon {
    margin-bottom: 1.5rem;
}

.coming-soon-icon svg {
    stroke: #667eea;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.coming-soon-modal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-modal-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .coming-soon-modal-content {
        margin: 20% auto;
        padding: 2rem;
        max-width: 90%;
    }

    .coming-soon-modal-content h2 {
        font-size: 1.5rem;
    }

    .coming-soon-modal-content p {
        font-size: 1rem;
    }
}
