/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .header-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 0 2rem;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.header-logo {
    display: flex;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-group:hover {
    transform: scale(1.05);
}

.logo-wrapper {
    position: relative;
}

.logo-image {
    height: 2rem;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-group:hover .logo-image {
    transform: scale(1.1);
}

.logo-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    blur: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-group:hover .logo-glow {
    opacity: 1;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-item {
    color: #6b7280;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-item a{text-decoration: none; color: #6b7280;}
.nav-item:hover {
    color: #1f2937;
    background-color: #f9fafb;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
}

.btn-secondary {
    color: #6b7280;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    color: #1f2937;
    background-color: #f9fafb;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.25);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-primary a{text-decoration: none;  color: white;}

.btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transform: scale(1.05);
}

.icon-arrow {
    width: 1rem;
    height: 1rem;
}

.mobile-menu-toggle {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-button {
    color: #6b7280;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-button:hover {
    color: #1f2937;
    background-color: #f9fafb;
}

.menu-icon,
.close-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(229, 231, 235, 0.5);
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-content {
    padding: 0.5rem 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-item {
    color: #6b7280;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.mobile-nav-item a{text-decoration: none; color: #6b7280; }

.mobile-nav-item:hover {
    color: #1f2937;
    background-color: #f9fafb;
}

.mobile-menu-actions {
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-cta {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, rgba(238, 242, 255, 0.3) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(128, 128, 128, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(128, 128, 128, 0.04) 1px, transparent 1px);
    background-size: 14px 24px;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.2;
    animation: float infinite ease-in-out;
}

.floating-icon {
    width: 2rem;
    height: 2rem;
    color: #6366f1;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}

.cursor-glow {
    position: absolute;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 1rem 4rem;
}

@media (min-width: 640px) {
    .hero-container {
        padding: 8rem 1.5rem 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 8rem 2rem 4rem;
    }
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.badge-content {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(238, 242, 255, 0.5);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    group: true;
}

.badge-content:hover {
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.2);
}

.badge-logo {
    position: relative;
    margin-right: 0.5rem;
}

.badge-image {
    height: 1rem;
    width: auto;
    transition: transform 0.3s ease;
}

.badge-content:hover .badge-image {
    transform: rotate(12deg);
}

.badge-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    blur: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.badge-content:hover .badge-glow {
    opacity: 1;
}

.badge-text {
    color: #4338ca;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-arrow {
    margin-left: 0.5rem;
    width: 0.75rem;
    height: 0.75rem;
    color: #6366f1;
    transition: transform 0.3s ease;
}

.badge-content:hover .badge-arrow {
    transform: translateX(0.25rem);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-title-gradient {
    position: relative;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #6366f1);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-x 3s ease infinite;
}

@keyframes gradient-x {
    0%, 100% { 
        background-position: left center; 
    }
    50% { 
        background-position: right center; 
    }
}

.title-underline {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #6366f1);
    border-radius: 9999px;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.btn-primary-large {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary-large:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.4);
}

.cta-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-primary-large:hover .cta-arrow {
    transform: translateX(0.25rem);
}

.btn-secondary-large {
    background: white;
    color: #1f2937;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary-large:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    transform: translateY(0);
}

.stat-card:hover {
    border-color: rgba(238, 242, 255, 1);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.1);
    transform: translateY(-0.25rem);
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: #6366f1;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: white;
}

.streamline-section {
    margin-bottom: 8rem;
}

.streamline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .streamline-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.section-title-large {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .section-title-large {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .section-title-large {
        font-size: 4 rem;
    }
}

.streamline-subtitle {
    margin-bottom: 2rem;
}

.subtitle-gradient {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.opportunities-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.opportunities-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
}

.opportunity-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.opportunity-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.opportunity-item p {
    color: #374151;
}

.streamline-visual {
    display: flex;
    justify-content: center;
}

.streamline-image {
    width: 100%;
    max-width: 32rem;
    height: auto;
    object-fit: contain;
}

.platform-delivers {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-medium {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-title-medium {
        font-size: 3rem;
    }
}

.platform-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .platform-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .platform-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.benefit-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
}

.benefit-blue {
    background-color: #dbeafe;
}

.benefit-cyan {
    background-color: #cffafe;
}

.benefit-green {
    background-color: #dcfce7;
}

.benefit-purple {
    background-color: #f3e8ff;
}

.benefit-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.benefit-icon img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.benefit-text h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    color: #374151;
    font-size: 0.875rem;
}

.platform-modules {
    margin-bottom: 8rem;
}

.modules-header {
    text-align: center;
    margin-bottom: 4rem;
}

.modules-tabs {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
}

.tab-button {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    min-width: 200px;
}

.tab-button:hover {
    transform: scale(1.05);
    z-index: 10;
}

.tab-content {
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #f3f4f6;
    color: #1f2937;
}

.tab-button.active .tab-content {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tab-button:not(.active):hover .tab-content {
    background-color: #e5e7eb;
}

.tab-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.tab-icon img {
    width: 3rem;
    height: 3rem;
}

.tab-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

.tab-arrow {
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #6366f1;
    opacity: 0;
}

.tab-button.active .tab-arrow {
    opacity: 1;
}

.modules-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .modules-content {
        grid-template-columns: 1fr 1fr;
    }
}

.module-content {
    display: none;
    max-width: 32rem;
}

.module-content.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #6b7280;
}

.content-item p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
}

.modules-visual {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .modules-visual {
        margin-top: 0;
    }
}

.visual-content {
    display: none;
    position: relative;
    max-width: 32rem;
}

.visual-content.active {
    display: block;
}

.module-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 1rem;
}

/* Integrations Section */
.integrations {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background-color: white;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    color: #6366f1;
    margin-right: 0.5rem;
}

.section-badge span {
    color: #4338ca;
    font-size: 0.875rem;
    font-weight: 500;
}

.title-gradient {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.integrations-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .integrations-controls {
        flex-direction: row;
    }
}

.search-wrapper {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    ring: 2px;
    ring-color: #6366f1;
    border-color: transparent;
}

.filter-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
}

.category-select {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    min-width: 200px;
    transition: all 0.2s ease;
}

.category-select:focus {
    outline: none;
    ring: 2px;
    ring-color: #6366f1;
    border-color: transparent;
}

.integrations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.integration-card {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    transform: translateY(0);
}

.integration-card:hover {
    border-color: rgba(238, 242, 255, 1);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.1);
    transform: translateY(-0.25rem);
}

.integration-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.integration-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.integration-logo {
    font-size: 1.5rem;
}

.integration-details h3 {
    font-weight: 600;
    color: #1f2937;
    transition: color 0.2s ease;
}

.integration-card:hover .integration-details h3 {
    color: #6366f1;
}

.integration-popular {
    display: flex;
    align-items: center;
    margin-top: 0.25rem;
}

.star-icon {
    width: 0.75rem;
    height: 0.75rem;
    color: #fbbf24;
    fill: currentColor;
    margin-right: 0.25rem;
}

.popular-text {
    font-size: 0.75rem;
    color: #6b7280;
}

.external-icon {
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
    transition: color 0.2s ease;
}

.integration-card:hover .external-icon {
    color: #6366f1;
}

.integration-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.category-productivity {
    background-color: #fef3c7;
    color: #92400e;
}

.category-crm {
    background-color: #dbeafe;
    color: #1e40af;
}

.category-marketing {
    background-color: #fef3c7;
    color: #92400e;
}

.category-support {
    background-color: #e0e7ff;
    color: #3730a3;
}

.category-devops {
    background-color: #f3f4f6;
    color: #374151;
}

.category-finance {
    background-color: #dcfce7;
    color: #166534;
}

.category-ecommerce {
    background-color: #dcfce7;
    color: #166534;
}

.integrations-cta {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .integrations-cta {
        padding: 3rem;
    }
}

.cta-background {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.cta-content {
    position: relative;
}

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.cta-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-white {
    background-color: white;
    color: #6366f1;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    transform: scale(1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-white:hover {
    background-color: #f9fafb;
    transform: scale(1.05);
}

.btn-arrow {
    width: 1rem;
    height: 1rem;
}

.btn-transparent {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-transparent:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, rgba(238, 242, 255, 0.3) 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.use-case-card {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.use-case-card:hover {
    border-color: rgba(238, 242, 255, 1);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.1);
    transform: translateY(-0.25rem);
}

.use-case-icon {
    padding: 0.75rem;
    border-radius: 0.75rem;
    width: fit-content;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.1);
}

.use-case-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.use-case-purple {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.use-case-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.use-case-red {
    background: linear-gradient(135deg, #ef4444, #ec4899);
}

.use-case-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.use-case-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.use-case-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background-color: white;
}

.pricing-content {
    text-align: center;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-title {
        font-size: 3.75rem;
    }
}

.pricing-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-subtitle {
        font-size: 1.875rem;
    }
}

.pricing-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 64rem;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .contact-info {
        flex-direction: row;
        gap: 4rem;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    padding: 0.75rem;
    border-radius: 9999px;
}

.contact-email {
    background-color: #dbeafe;
}

.contact-phone {
    background-color: #fecaca;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-email svg {
    color: #2563eb;
}

.contact-phone svg {
    color: #dc2626;
}

.contact-link {
    font-size: 1.125rem;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #6366f1;
}

.contact-divider {
    display: none;
    width: 1px;
    height: 2rem;
    background-color: #d1d5db;
}

@media (min-width: 768px) {
    .contact-divider {
        display: block;
    }
}

.contact-cta {
    display: flex;
    justify-content: center;
}

.btn-gradient {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1rem 3rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.4);
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #111827 0%, #374151 50%, #4338ca 100%);
    opacity: 0.5;
}

.footer-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6366f1, transparent);
}

.footer-content {
    position: relative;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        gap: 0;
    }
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .footer-links {
        margin-top: 0;
    }
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title-large {
        font-size: 2.5rem;
    }
    
    .section-title-medium {
        font-size: 2rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        min-width: 280px;
    }
    
    .modules-content {
        grid-template-columns: 1fr;
    }
    
    .modules-visual {
        order: -1;
    }
}