/* Global Styles */
:root {
    --background: #ffffff;
    --foreground: #09090b;
    --card: #ffffff;
    --card-foreground: #09090b;
    --popover: #ffffff;
    --popover-foreground: #09090b;
    --primary: #6E56CF;
    --primary-foreground: #ffffff;
    --secondary: #f4f4f5;
    --secondary-foreground: #18181b;
    --muted: #f4f4f5;
    --muted-foreground: #71717a;
    --accent: #f4f4f5;
    --accent-foreground: #18181b;
    --destructive: #ef4444;
    --destructive-foreground: #fafafa;
    --border: #e4e4e7;
    --input: #e4e4e7;
    --ring: #6E56CF;
    --radius: 0.5rem;

    --primary-color: #6E56CF; /* Shadcn purple */
    --secondary-color: #7c66ce;
    --accent-color: #a18fff;
    --dark-color: #09090b;
    --light-color: #fafafa;
    --gray-color: #71717a;
    --light-gray: #f4f4f5;
    --light-bg: #f5f7fb; /* Light background for sections */
    --heading-color: #09090b; /* For headings */
    --text-color: #555555; /* For regular text */
    --success-color: #10b981;
    --border-radius: 0.5rem;
    --box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --transition: all 0.2s ease;
    --section-padding-top: 100px; /* Added for better section positioning */
}

/* Section positioning - add padding to section targets */
section[id] {
    padding-top: var(--section-padding-top);
    margin-top: -60px; /* Offset the padding to maintain visual layout */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--foreground);
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 700;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.875rem;
    border: none;
    height: 40px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.btn-secondary:hover {
    background-color: #e4e4e7;
    color: var(--secondary-foreground);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-outline:hover {
    background-color: var(--muted);
    border-color: var(--border);
}

.btn-large {
    padding: 12px 20px;
    font-size: 0.9375rem;
    height: 48px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.8125rem;
    height: 32px;
}

/* Header */
header {
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: flex;
    align-items: center;
    color: var(--foreground);
    transition: transform 0.2s ease;
}

.logo a:hover {
    transform: translateY(-1px);
}

.logo img {
    height: 32px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 32px;
    position: relative;
}

.nav-links a {
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a:not(.btn):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover:after {
    width: 100%;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

.nav-links .btn-small {
    margin-left: 8px;
}

/* Platform link styling */
.nav-links .btn-platform {
    color: var(--primary-color);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--border-radius);
    background-color: rgba(110, 86, 207, 0.1);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid transparent;
}

.nav-links .btn-platform:hover {
    background-color: rgba(110, 86, 207, 0.15);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.nav-links .btn-platform i {
    font-size: 0.7rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1010;
    padding: 10px;
    margin: -10px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
    margin-top: 0; /* Override the margin-top for hero section */
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 70% 40%, rgba(110, 86, 207, 0.05) 0%, rgba(110, 86, 207, 0) 70%);
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 0 0 50%;
}

.hero-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--heading-color);
    letter-spacing: -0.035em;
    font-weight: 800;
    background: linear-gradient(135deg, var(--heading-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: var(--muted-foreground);
    line-height: 1.5;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-buttons .btn {
    padding: 14px 24px;
    font-size: 1rem;
    height: auto;
    border-radius: 8px;
    font-weight: 600;
}

.hero-buttons .btn-primary {
    box-shadow: 0 4px 16px rgba(110, 86, 207, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 86, 207, 0.4);
}

.hero-buttons .btn-secondary {
    background-color: rgba(244, 244, 245, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid var(--border);
}

.hero-buttons .btn-secondary:hover {
    background-color: rgba(244, 244, 245, 0.8);
    border-color: var(--muted-foreground);
}

.hero-image {
    flex: 0 0 45%;
    text-align: right;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Trust Badges */
.trust-badges {
    padding: 50px 0 70px;
    background: linear-gradient(to bottom, var(--background) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.trust-badges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--border) 50%, transparent 100%);
}

.trust-badges .section-header {
    margin-bottom: 30px;
}

.trust-badges .section-header h4 {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--muted-foreground);
    font-weight: 500;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.trust-badges .section-header h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: var(--border);
}

.trust-badges .container {
    overflow: hidden;
    position: relative;
}

.badges-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin-top: -20px;
}

.badges-container::before,
.badges-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.badges-container::before {
    left: 0;
    background: linear-gradient(to right, var(--light-bg), transparent);
}

.badges-container::after {
    right: 0;
    background: linear-gradient(to left, var(--light-bg), transparent);
}

.badges {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 20px 0;
    animation: scrollLogos 60s linear infinite;
    width: max-content;
}

.badges:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.badge {
    text-align: center;
    flex: 0 0 160px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    position: relative;
    transition: margin-top 0.3s ease;
    margin: 0;
}

.badge:hover {
    margin-top: -5px;
}

.badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.badge:hover::before {
    opacity: 1;
}

.badge img {
    height: auto;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: none;
}

.badge:hover img {
    height: 103%;
    width: auto;
}

/* Logo-specific styling using class-based approach for better consistency */
.badge.stanford-badge img {
    height: 65px;
    width: auto;
    max-width: 150px;
}

.badge.mit-badge img {
    height: 70px;
    width: auto;
    max-width: 150px;
}

.badge.umich-badge img {
    height: 63px;
    width: auto;
    max-width: 135px;
}

.badge.yale-badge img {
    height: 39px;
    width: auto;
    max-width: 90px;
}

.badge.berkeley-badge img {
    height: 63px;
    width: auto;
    max-width: 135px;
}

.badge.cambridge-badge img {
    height: 52px;
    width: auto;
    max-width: 120px;
}

.badge.microsoft-badge img {
    height: 59px;
    width: auto;
    max-width: 135px;
}

.badge.amazon-badge img {
    height: 52px;
    width: auto;
    max-width: 120px;
}

.badge.ai2-badge img {
    height: 49px;
    width: auto;
    max-width: 105px;
}

.badge.cohere-badge img {
    height: 85px;
    width: auto;
    max-width: 195px;
}

.badge.prolific-badge img {
    height: 65px;
    width: auto;
    max-width: 150px;
}

.badge.cloudresearch-badge img {
    height: 104px;
    width: auto;
    max-width: 240px;
}

.badge p {
    font-weight: 500;
    color: var(--muted-foreground);
}

/* Features Section */
.features {
    padding: 80px 0 100px;
    background-color: var(--background);
    position: relative;
    z-index: 1;
}

.features::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 20% 80%, rgba(110, 86, 207, 0.03) 0%, rgba(110, 86, 207, 0) 70%);
    z-index: -1;
}

.features .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.features .section-header p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background-color: var(--card);
    border-radius: 12px;
    padding: 35px 30px;
    text-align: left;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    border: 1px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(110, 86, 207, 0.1);
}

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

.feature-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(110, 86, 207, 0.1) 0%, rgba(161, 143, 255, 0.05) 100%);
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card:hover .icon {
    color: var(--light-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(110, 86, 207, 0.3);
}

.feature-card h3 {
    margin-bottom: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.feature-card p {
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: auto;
}

/* Use Cases Section */
.use-cases {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--muted) 100%);
    position: relative;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--light-bg));
    z-index: 1;
}

.use-cases .section-header {
    position: relative;
    z-index: 2;
}

.use-cases .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.use-cases .section-header p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 20px;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
    position: relative;
    z-index: 2;
}

.use-case-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(228, 228, 231, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(110, 86, 207, 0.2);
}

.use-case-image {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--muted) 100%);
    padding: 15px;
    position: relative;
}

.use-case-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(110, 86, 207, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

.use-case-image img {
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

.use-case-card:hover .use-case-image img {
    transform: scale(1.05) translateY(-5px);
}

.use-case-content {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.use-case-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--heading-color);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.use-case-content p {
    color: var(--muted-foreground);
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.use-case-content ul {
    margin-bottom: 20px;
    padding-left: 5px;
}

.use-case-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
}

.use-case-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    background-color: rgba(16, 185, 129, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Old tab styles kept for reference, can be removed later */
.use-case-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    gap: 8px;
}

.tab-btn {
    padding: 10px 16px;
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-content {
    background-color: var(--card);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
}

.tab-text {
    flex: 1;
    min-width: 300px;
}

.tab-text h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.tab-text p {
    margin-bottom: 16px;
    color: var(--muted-foreground);
}

.tab-text ul {
    margin-bottom: 20px;
}

.tab-text ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.tab-text ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.tab-image {
    flex: 1;
    min-width: 300px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    top: -150px;
    right: -50px;
    z-index: 0;
}

.cta::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(110, 86, 207, 0.3) 0%, rgba(161, 143, 255, 0) 100%);
    padding: 40px;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-content::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    top: -75px;
    right: 50px;
    z-index: -1;
}

.cta-content::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    bottom: -50px;
    left: 60px;
    z-index: -1;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta .btn {
    background-color: white;
    color: var(--primary-color);
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: auto;
}

.cta .btn:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Pricing Section */
.pricing {
    padding: 100px 0 120px;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 80% 30%, rgba(110, 86, 207, 0.03) 0%, rgba(110, 86, 207, 0) 70%);
    z-index: 0;
}

.pricing .section-header {
    position: relative;
    z-index: 1;
}

.pricing .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.pricing .section-header p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 20px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background-color: var(--card);
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid var(--border);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(110, 86, 207, 0.2);
}

.pricing-card.popular {
    background-color: var(--card);
    border: 2px solid var(--primary-color);
    transform: translateY(-10px) scale(1.02);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 10px rgba(110, 86, 207, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--heading-color);
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1;
}

.period {
    color: var(--muted-foreground);
    margin-left: 5px;
    font-size: 1rem;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    padding-left: 5px;
}

.pricing-features ul li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--foreground);
}

.pricing-features ul li i {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-footer {
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    height: auto;
    transition: all 0.3s ease;
}

.pricing-card.popular .pricing-footer .btn {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    box-shadow: 0 4px 15px rgba(110, 86, 207, 0.3);
}

.pricing-card.popular .pricing-footer .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(110, 86, 207, 0.4);
}

/* About Section */
.about {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--muted) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 30% 70%, rgba(110, 86, 207, 0.04) 0%, rgba(110, 86, 207, 0) 70%);
}

.about .section-header {
    margin-bottom: 70px;
}

.about .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.about .section-header p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 20px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0.15;
    z-index: 0;
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-image:hover::before {
    top: 30px;
    left: 30px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--muted-foreground);
    font-size: 1.05rem;
    line-height: 1.7;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(228, 228, 231, 0.7);
    transition: all 0.3s ease;
}

.value:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(110, 86, 207, 0.2);
}

.value h4 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.value h4 i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background-color: rgba(110, 86, 207, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 80% 20%, rgba(110, 86, 207, 0.04) 0%, rgba(110, 86, 207, 0) 70%);
    z-index: 0;
}

.contact .section-header {
    position: relative;
    z-index: 1;
}

.contact .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact .section-header p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 20px;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
    text-align: center;
    max-width: 550px;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(110, 86, 207, 0.1) 0%, rgba(161, 143, 255, 0.05) 100%);
    top: -100px;
    right: -100px;
    z-index: -1;
}

.contact-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(110, 86, 207, 0.08) 0%, rgba(161, 143, 255, 0.03) 100%);
    bottom: -75px;
    left: -75px;
    z-index: -1;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(110, 86, 207, 0.2);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(110, 86, 207, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(110, 86, 207, 0.4);
}

.contact-icon i {
    font-size: 2.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--heading-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-description {
    color: var(--muted-foreground);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-email {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-email:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-btn {
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    box-shadow: 0 5px 15px rgba(110, 86, 207, 0.3);
    transition: all 0.3s ease;
    color: white;
    height: auto;
    margin-top: 10px;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(110, 86, 207, 0.4);
}

.contact-btn i {
    margin-right: 10px;
}

/* Footer */
footer {
    padding-top: 80px;
    background-color: var(--dark-color);
    color: white;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 0 0 100%;
    max-width: 300px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-logo span {
    color: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.link-group {
    flex: 1;
    min-width: 160px;
}

.link-group h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.link-group ul li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.25rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .badges {
        justify-content: flex-start;
        padding-left: 30px;
        gap: 25px;
    }
    
    .badge {
        width: 180px;
        height: 110px;
    }
    
    .badge:nth-child(3) {
        width: 200px;
    }
    
    .badge:nth-child(3) img {
        max-width: 180px;
        max-height: 90px;
    }
    
    .badge img {
        max-height: 75px;
        max-width: 160px;
    }
    
    .use-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image::before {
        top: 15px;
        left: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
        background: linear-gradient(135deg, var(--heading-color) 30%, var(--primary-color) 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
        flex: 0 0 100%;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin: 0 auto 30px;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: var(--background);
        display: flex;
        flex-direction: column;
        padding: 80px 40px 40px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 8px 0;
        display: block;
        width: 100%;
    }
    
    .nav-links .btn-small {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .nav-links .btn-platform {
        margin-top: 5px;
        margin-bottom: 10px;
        justify-content: flex-start;
        width: 100%;
    }
    
    /* Add overlay when mobile menu is active */
    body:before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    body.menu-open:before {
        opacity: 1;
        visibility: visible;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .feature-card, 
    .pricing-card, 
    .use-case-card {
        transform: none !important;
    }
    
    .feature-card:hover, 
    .pricing-card:hover, 
    .use-case-card:hover {
        transform: translateY(-5px) !important;
    }
    
    .pricing-card.popular {
        transform: scale(1.02) !important;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px) scale(1.02) !important;
    }
    
    .tab-pane.active {
        flex-direction: column;
    }
    
    .tab-image {
        order: -1;
    }
    
    .use-case-image {
        height: 160px;
    }
    
    .about-content {
        flex-direction: column-reverse;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .contact-card {
        padding: 40px 25px;
        max-width: 100%;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .contact-email {
        font-size: 1.25rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo {
        max-width: 100%;
        margin-bottom: 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .link-group {
        min-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 130px 0 70px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .feature-cards,
    .values {
        grid-template-columns: 1fr;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon i {
        font-size: 2rem;
    }
    
    .contact-card h3 {
        font-size: 1.7rem;
    }
    
    .contact-btn {
        width: 100%;
    }
}

/* Policy Contact Card */
.policy-contact {
    margin: 30px 0;
    max-width: 600px;
    background-color: var(--light-bg);
    padding: 30px;
}

.policy-contact .contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.policy-contact h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.policy-contact .contact-btn {
    margin-top: 5px;
}

/* Careers Section */
.careers-section {
    padding: 160px 0 120px;
    background-color: var(--background);
    position: relative;
    z-index: 1;
}

.careers-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 30% 70%, rgba(110, 86, 207, 0.03) 0%, rgba(110, 86, 207, 0) 70%);
    z-index: -1;
}

.careers-content {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.no-openings-card {
    background-color: var(--card);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    max-width: 700px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
}

.no-openings-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(110, 86, 207, 0.1) 0%, rgba(161, 143, 255, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 2rem;
}

.no-openings-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--heading-color);
    font-weight: 700;
}

.no-openings-card p {
    color: var(--muted-foreground);
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.no-openings-card a {
    font-weight: 600;
} 