/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00D4D4;
    --primary-hover: #00A8A8;
    --secondary-color: #5B8CFF;
    --accent-purple: #6366F1;
    --accent-emerald: #10B981;
    --accent-indigo: #4F46E5;
    --success-green: #10B981;
    --dark-navy: #1E3A8A;
    --dark-bg: #0F172A;
    --light-bg: #FAFBFC;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --border-color: #E2E8F0;
    --white: #ffffff;
    --light-cyan: rgba(0, 212, 212, 0.08);
    --cyan-text: #00D4D4;
    --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);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #FAFBFC;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: hidden;
    position: relative;
}

/* Navbar background - clean */
.navbar::before {
    display: none;
}

.navbar::after {
    display: none;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.navbar-brand {
    flex: 0 0 auto;
}

.navbar-brand h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    letter-spacing: -0.5px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.navbar-nav a {
    text-decoration: none;
    color: #0F172A;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: relative;
}

.navbar-nav a:hover {
    color: var(--primary-color);
    background: rgba(0, 212, 212, 0.1);
    transform: scale(1.1);
}

.navbar-nav a.active-section {
    color: var(--primary-color);
    background: rgba(0, 212, 212, 0.08);
}

@media (max-width: 900px) {
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-nav {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .navbar-brand h1 {
        font-size: 1.5rem;
    }
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 168, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-link {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.integration-card .btn-link {
    color: var(--gold-color);
}

.btn-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    transform: translateX(3px);
}

/* Hero Section */
.hero {
    background: #ffffff;
    color: var(--text-dark);
    padding: 5rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.hero-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image-box {
    width: 100%;
    height: 450px;
    background-color: rgba(0, 217, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
border: 2px solid rgba(0, 217, 255, 0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-badge span {
    background-color: rgba(0, 217, 255, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    color: var(--text-light);
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image-box {
        height: 300px;
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Overview */
.product-overview {
    background-color: var(--light-bg);
}

.overview-content .main-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.overview-content .secondary-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 212, 0.08) 0%, rgba(91, 140, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-card > * {
    position: relative;
    z-index: 2;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(24, 232, 217, 0.2);
}

.highlight-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.highlight-card:hover .icon {
    transform: scale(1.15);
    color: #00D4D4;
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.highlight-card:hover h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Use Cases */
.use-case-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding: 4px;
    background: #e5e7eb;
    border: 1px solid #d1d5db;
    --active-tab-index: 0;
}

.use-case-tabs::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    border-radius: 9px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateX(calc(var(--active-tab-index) * 100%));
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tab-btn {
    padding: 1rem 3rem;
    border: none;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--text-dark);
    font-size: 1rem;
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tab-btn.active {
    background: transparent;
    color: var(--white);
}

.tab-btn:hover:not(.active) {
    color: #0f172a;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 1.4rem;
}

@media (max-width: 1024px) {
    .use-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .use-case-grid {
        grid-template-columns: 1fr;
    }
}

.use-case-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: -0.8rem;
    margin-bottom: 2.8rem;
}

.use-case-page-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid #94a3b8;
    background: #ffffff;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    font-size: 16px;
    line-height: 1;
}

.use-case-page-btn:hover:not(:disabled) {
    border-color: #00D4D4;
    color: #0e7490;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 24px rgba(14, 116, 144, 0.15);
}

.use-case-page-btn.is-pressed:not(:disabled) {
    transform: scale(0.95);
}

.use-case-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.use-case-page-indicator {
    min-width: 64px;
    text-align: center;
    font-weight: 700;
    color: #334155;
    font-size: 0.95rem;
}

.use-case-page-indicator.is-updating {
    animation: useCaseIndicatorPulse 0.35s ease;
}

.use-case-page-item {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
}

.use-case-page-item.is-visible {
    animation: useCaseCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--card-delay, 0ms);
}

@keyframes useCaseCardIn {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes useCaseIndicatorPulse {
    0% {
        transform: scale(0.96);
        opacity: 0.65;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .use-case-tabs::before,
    .tab-btn,
    .use-case-page-btn,
    .use-case-card,
    .use-case-icon,
    .use-case-page-item,
    .use-case-page-item.is-visible,
    .use-case-page-indicator {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    .use-case-page-item {
        opacity: 1 !important;
    }
}

.use-case-card {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #dbe3eb;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    min-height: 190px;
    box-shadow: 0 2px 10px rgba(2, 6, 23, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.use-case-card:hover {
    border-color: #9fdbff;
    box-shadow: 0 14px 32px rgba(59, 130, 246, 0.12);
    transform: translateY(-2px);
}

.use-case-detail-head {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
}

.use-case-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 212, 212, 0.12);
    color: #00AFC4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.use-case-title-wrap h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.use-case-title-wrap p {
    font-size: 13px;
    color: #475569;
    line-height: 1.55;
    margin: 8px 0 0;
}

.use-case-meta-row {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.use-case-meta-pill {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #0f766e;
    background: #ecfeff;
    border: 1px solid #a5f3fc;
    border-radius: 999px;
    padding: 4px 8px;
}

.uc-expand-btn {
    margin-top: auto;
    border: none;
    background: transparent;
    color: #0369a1;
    font-weight: 700;
    font-size: 13px;
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 0 0;
}

.uc-expand-btn:hover { color: #0284c7; }
.uc-expand-btn i { font-size: 13px; transition: transform 0.2s ease; }
.uc-expand-btn:hover i { transform: translateX(2px); }

.use-case-note {
    background: linear-gradient(135deg, #00D4D4 0%, #5B8CFF 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.use-case-note::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.use-case-note:hover::before {
    opacity: 1;
}

.use-case-note strong {
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.use-case-note p {
    position: relative;
    z-index: 1;
}

/* Features Section - Big Circular Grid with Honeycomb Stagger */
.features {
    background: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.features h2,
.features .section-subtitle {
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

/* Circular Grid for Features */
.circular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

.circle-card {
    background: var(--white);
    border: 4px solid #00D4D4;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.1);
}

.circle-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.circle-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: transparent;
    background-size: 200% 200%;
    border-radius: 50%;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.circle-card:hover::before {
    opacity: 0;
}

.circle-card:hover::after {
    opacity: 0;
}

.circle-card > * {
    position: relative;
    z-index: 2;
}

.circle-card:hover {
    border-color: #00D4D4;
    border-width: 5px;
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 217, 255, 0.3), 0 0 0 1px rgba(0, 217, 255, 0.1);
}

.circle-inner {
    text-align: center;
    color: var(--text-dark);
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.circle-card:hover .circle-inner {
    color: var(--text-dark);
    transform: scale(1.05);
}

.circle-inner h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.circle-card:hover .circle-inner h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #00D4D4;
}

.circle-inner p {
    font-size: 0.85rem;
    opacity: 0.85;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.circle-card:hover .circle-inner p {
    opacity: 1;
}
    
/* Old features grid - kept for compatibility */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 217, 255, 0.08), transparent);
    transition: bottom 0.4s ease;
    z-index: 1;
}

.feature-card:hover::before {
    bottom: 0;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: #00D4D4;
    box-shadow: 0 10px 25px rgba(24, 232, 217, 0.15);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
    color: #00D4D4;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Integrations Section */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.integration-card {
    background: linear-gradient(135deg, #5B8CFF 0%, #00D4D4 100%);
    color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.integration-card:hover::before {
    opacity: 1;
}

.integration-card > * {
    position: relative;
    z-index: 2;
}

.integration-card:hover {
    border-color: #00D4D4;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(24, 232, 217, 0.2);
}

.integration-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: all 0.35s ease;
    color: var(--white);
}

/* FA icon hover — subtle, no overflow */
.integration-card:hover .integration-icon i {
    transform: scale(1.08);
    color: var(--gold-color);
    filter: drop-shadow(0 0 10px rgba(255, 220, 100, 0.6));
}

/* White badge for profile logos */
.integration-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    padding: 8px;
    transition: box-shadow 0.35s ease;
}

.integration-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

@keyframes intg-logo-glow {
    0%, 100% { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18); }
    50%       { box-shadow: 0 4px 22px rgba(255, 255, 255, 0.55), 0 2px 12px rgba(0, 0, 0, 0.12); }
}

.integration-card:hover .integration-logo-badge {
    animation: intg-logo-glow 1.4s ease-in-out infinite;
}

.integration-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
    transition: all 0.3s ease;
}

.integration-card:hover h3 {
    font-size: 1.65rem;
}

.integration-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.integration-card:hover p {
    color: var(--white);
}

.integration-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Testimonials */
.testimonials {
    background-color: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.testimonial-header {
    margin-bottom: 1.5rem;
}

.author-info h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.company-info {
    color: var(--text-light);
    font-size: 0.875rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Resources Section */
.resources {
    background-color: var(--light-bg);
}

.resources-container {
    position: relative;
    margin-bottom: 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.resource-category {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.resource-category h3 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.resource-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    flex: 1;
    position: relative;
    margin-bottom: 1.5rem;
}

.resource-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.resource-item:hover {
border-color: var(--primary-color);
}

.resource-item:hover {
border-color: var(--gold-color);
}

.resource-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.resource-meta span {
    background-color: var(--light-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
}

.resource-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.resource-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--secondary-color);
}

.resource-nav {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.resource-nav button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.resource-nav button:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.resource-nav button:disabled {
    background: var(--border-color);
    cursor: not-allowed;
    opacity: 0.5;
}

.main-carousel-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    z-index: 10;
}

.main-carousel-nav button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.main-carousel-nav button:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.main-carousel-nav button:disabled {
    background: var(--border-color);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, #00D4D4 0%, #5B8CFF 100%);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card > * {
    position: relative;
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #00D4D4;
    box-shadow: 0 12px 30px rgba(24, 232, 217, 0.25);
}

.pricing-card.popular {
    border-color: #00D4D4;
}

.pricing-card.popular:hover {
    box-shadow: 0 15px 40px rgba(96, 120, 234, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
    transition: all 0.3s ease;
}

.pricing-card:hover h3 {
    font-size: 1.9rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.amount {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--gold-color);
    transition: all 0.3s ease;
}

.pricing-card:hover .amount {
    color: var(--white);
}

.period {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pricing-card:hover .period {
    color: var(--white);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover .features-list li {
    color: var(--white);
}

.features-list li:last-child {
    border-bottom: none;
}

.plan-details {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.plan-details p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.pricing-card button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    background-color: var(--light-bg);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--light-bg);
}

.toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

/* Implementation Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: linear-gradient(135deg, #00D4D4 0%, #5B8CFF 100%);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card > * {
    position: relative;
    z-index: 2;
}

.partner-card:hover {
    border-color: var(--gold-color);
transform: translateY(-8px) scale(1.02);
}

.partner-header {
    margin-bottom: 1rem;
}

.partner-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-header h3 {
    font-size: 1.65rem;
color: var(--white);
}

.rating {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.rating span:first-child {
    color: var(--gold-color);
    font-weight: 600;
}

.partner-card:hover .rating {
    color: var(--white);
}

.specialty {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.partner-card:hover .specialty {
    color: var(--white);
}

.description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.partner-card:hover .description {
    color: var(--white);
}

.partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.partner-card .tag:hover {
    background-color: var(--gold-color);
    color: var(--text-dark);
    transform: scale(1.05);
}

.partner-card button {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .feature-highlights,
    .use-case-grid,
    .features-grid,
    .integrations-grid,
    .testimonials-grid,
    .pricing-grid,
    .partners-grid,
    .circular-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .resource-category {
        width: 100%;
    }

    .resource-items {
        flex-direction: column;
        max-height: none;
    }

    .resource-item {
        width: 100%;
        min-width: 100%;
    }

    .resource-nav {
        position: static;
        margin-bottom: 1rem;
        justify-content: flex-start;
    }

    .main-carousel-nav {
        position: static;
        justify-content: center;
        margin-top: 1rem;
    }
}

.navbar-nav a i {
    margin-right: 0.5rem;
}

.highlight-card .icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.use-case-icon i {
    font-size: 19px;
    color: #00AFC4;
}

.integration-icon i {
    font-size: 2.5rem;
    color: var(--white);
    transition: color 0.4s ease;
}

/* Linked integration cards (have a matching software profile) */
.integration-card--linked::after {
    content: '\f35d'; /* fa-external-link-alt unicode */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    z-index: 3;
    transition: color 0.25s ease;
}
.integration-card--linked:hover::after {
    color: rgba(255, 255, 255, 0.95);
}
/* Don't animate the logo badge image itself */
.integration-card:hover .integration-icon img {
    transform: none;
    filter: none;
}

.demo-btn i {
    margin-right: 0.5rem;
}

.arrow i {
    color: var(--primary-color);
}

.btn-link i {
    margin-right: 0.5rem;
}

.resource-category h3 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.read-more i {
    margin-left: 0.5rem;
}

.badge i {
    margin-right: 0.25rem;
    color: #6366F1;
}

.highlight-card,
.use-case-card,
.feature-card,
.integration-card,
.testimonial-card,
.pricing-card,
.partner-card {
    animation: fadeIn 0.6s ease-out;
}
