:root {
    --primary-color: #137fa2;
    --secondary-color: #23253A;
    --accent-color: #00d4ff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-hero: linear-gradient(135deg, #137fa2 0%, #0a5d79 50%, #00d4ff 100%);
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #ffffff;
    --surface-light: #ffffff;
    --surface-dark: #1a1a1a;
    --border-light: #e5e5e5;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
    max-width: 180px;
}

.nav-logo .logo-image {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.nav-logo .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-display);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #0a5d79;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--text-light);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-dark {
    background: linear-gradient(135deg, #137fa2 0%, #0a5d79 50%, #00d4ff 100%);
    color: var(--text-light);
    padding: 0.75rem 2rem;
    border: none;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    color: var(--text-light);
}

.hero-video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video video {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Hide video on tablets and mobile */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-video {
        display: none;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.badge {
    background: var(--text-light);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(45deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white !important;
    opacity: 0.9;
}

.hero p {
    color: white !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Murphy Section */
.murphy-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;
}

.murphy-video {
    position: relative;
}

.video-container {
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-header {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem 1.5rem;
    text-align: center;
}

.video-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.murphy-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.murphy-video:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.video-controls {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.murphy-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.badge-small {
    background: var(--text-light);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.app-preview img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Company Logos */
.company-logos {
    padding: 4rem 0;
    background: #f8fafc;
    border-top: 1px solid rgba(19, 127, 162, 0.1);
    border-bottom: 1px solid rgba(19, 127, 162, 0.1);
    overflow: hidden;
}

.logos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.logos-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.logos-scroll {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logos-track {
    display: inline-flex;
    animation: scroll-logos 30s linear infinite;
    gap: 4rem;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 80px;
}

.logo-placeholder {
    background: rgba(19, 127, 162, 0.08);
    border: 2px solid rgba(19, 127, 162, 0.15);
    border-radius: 12px;
    width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    background: rgba(19, 127, 162, 0.12);
    border-color: rgba(19, 127, 162, 0.25);
    transform: translateY(-2px);
}

.logo-item img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logos-scroll:hover .logos-track {
    animation-play-state: paused;
}

/* Video Demo Section */
.video-demo {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.video-demo .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-demo .section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.video-demo .section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .video-demo {
        padding: 4rem 0;
    }
    
    .video-demo .section-header h2 {
        font-size: 2rem;
    }
    
    .video-demo .section-header p {
        font-size: 1rem;
    }
    
    .video-container {
        border-radius: 12px;
    }
}

/* Platform Overview */
.platform-overview {
    padding: 6rem 0;
    background: var(--surface-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
}

.gradient-1 { background: var(--gradient-1); }
.gradient-2 { background: var(--gradient-2); }
.gradient-3 { background: var(--gradient-3); }

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Integrations */
.integrations {
    padding: 6rem 0;
    background: #f8f9fa;
}

.integrations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.integrations-visual {
    display: flex;
    justify-content: center;
}

.integration-hub {
    position: relative;
    width: 300px;
    height: 300px;
}

.multiply-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    z-index: 2;
}

.integration-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.integration-app {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--surface-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-light);
    animation: float 3s ease-in-out infinite;
}

.integration-app:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.integration-app:nth-child(2) { top: 20%; right: 0; animation-delay: 0.5s; }
.integration-app:nth-child(3) { bottom: 20%; right: 0; animation-delay: 1s; }
.integration-app:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.integration-app:nth-child(5) { bottom: 20%; left: 0; animation-delay: 2s; }
.integration-app:nth-child(6) { top: 20%; left: 0; animation-delay: 2.5s; }
.integration-app:nth-child(7) { top: 30%; right: 30%; animation-delay: 3s; }
.integration-app:nth-child(8) { bottom: 30%; left: 30%; animation-delay: 3.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.integrations-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.integrations-text blockquote {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--surface-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.integrations-text blockquote p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.integrations-text cite {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-style: normal;
}

.integrations-text cite img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Workflow */
.workflow {
    padding: 6rem 0;
    background: var(--surface-light);
}

.workflow-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.workflow-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.workflow-visual {
    display: flex;
    justify-content: center;
}

.app-interface img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

/* Features Dark */
.features-dark {
    padding: 6rem 0;
    background: var(--surface-dark);
    color: var(--text-light);
}

.section-header-dark {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-dark h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.feature-card-dark {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.feature-visual img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.cloud-icon {
    font-size: 3rem;
    color: #4facfe;
}

.user-badges {
    position: absolute;
    bottom: 0;
    display: flex;
    gap: 0.5rem;
}

.user-badge {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.performance-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.performance-icons i {
    font-size: 3rem;
}

.performance-icons i:first-child {
    color: #ffd700;
}

.performance-icons i:last-child {
    color: #00ff88;
}

.cloud-download {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cloud-download i {
    font-size: 3rem;
    color: var(--primary-color);
}

.feature-card-dark h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card-dark p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA */
.cta {
    padding: 6rem 0;
    background: var(--gradient-hero);
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* AI Training Page - Modern Design */
.ai-hero-modern {
    background: linear-gradient(135deg, #137fa2 0%, #0f6b8a 100%);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.ai-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.ai-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ai-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.ai-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.ai-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 280px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    word-break: break-word;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ai-cta-buttons {
    display: flex;
    gap: 1rem;
}

.ai-cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.murphy-showcase {
    position: relative;
}

.ai-hero-visual img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.murphy-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
}

.murphy-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.murphy-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #0f6b8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.murphy-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.murphy-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.evaluation-preview {
    space-y: 1rem;
}

.eval-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.eval-label {
    min-width: 100px;
    font-size: 0.9rem;
    font-weight: 500;
}

.eval-progress {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #0f6b8a);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.eval-score {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* Murphy Capabilities Section */
.murphy-capabilities {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.capability-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(19, 127, 162, 0.1);
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.capability-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #0f6b8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.capability-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.capability-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Offerings Page */
.offerings-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #137fa2 0%, #0f6b8a 100%);
    color: white;
    text-align: center;
}

.offerings-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.offerings-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.offerings-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    font-style: italic;
}

/* Offerings Description Section */
.offerings-description {
    padding: 6rem 0;
    background: white;
}

.description-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.description-content {
    max-width: 100%;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.description-text:last-child {
    margin-bottom: 0;
}

.description-visual {
    display: flex;
    justify-content: center;
}

.global-reach-map {
    width: 100%;
    max-width: 600px;
    height: auto;
    border: none;
    box-shadow: none;
    background: transparent;
}

.map-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-color: var(--primary-color);
}

.placeholder-content {
    text-align: center;
    color: var(--text-secondary);
}

.placeholder-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.placeholder-content span {
    font-size: 1rem;
    font-weight: 500;
}

/* Service Offerings Section */
.service-offerings {
    padding: 6rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(19, 127, 162, 0.1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    transform: rotate(15deg);
}

.service-visual {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.platform-mockup {
    background: #1e293b;
    border-radius: 8px;
    padding: 1rem;
    width: 200px;
    height: 120px;
    position: relative;
}

.mockup-header {
    background: #334155;
    padding: 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.mockup-title {
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
}

.mockup-content {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feedback-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.feedback-dot.green { background: #10b981; }
.feedback-dot.yellow { background: #f59e0b; }
.feedback-dot.red { background: #ef4444; }

.service-image-placeholder {
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.service-image-placeholder:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-color: var(--primary-color);
}

.service-image-placeholder i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-image-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

.service-image {
    width: 150px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.5;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.service-features strong {
    color: var(--text-primary);
}

.service-note {
    font-style: italic;
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.pricing-note {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
}

/* Playbook Styles */
.playbook-intro {
    max-width: 1000px;
    margin: 2rem auto 0;
    text-align: center;
}

.playbook-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: white;
}

.playbook-highlight {
    font-size: 1.3rem !important;
    margin-top: 2rem !important;
    color: white !important;
}

.playbook-chapters {
    padding: 4rem 0;
    background: #f8fafc;
}

.chapter-card {
    background: white;
    border-radius: 16px;
    margin: 3rem 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chapter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.chapter-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 400px;
    align-items: center;
}

.chapter-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.chapter-text {
    padding: 3rem;
}

.chapter-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.chapter-text p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.chapter-subsection {
    margin: 2rem 0;
    padding-left: 1rem;
    border-left: 3px solid #e2e8f0;
}

.chapter-subsection h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.preparation-list, .activity-list, .closing-list, .alignment-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.preparation-list li, .activity-list li, .closing-list li, .alignment-list li {
    padding: 0.8rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.preparation-list li::before, .activity-list li::before, .closing-list li::before, .alignment-list li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.chapter-visual {
    background: linear-gradient(135deg, #137fa2 0%, #0a5d79 50%, #00d4ff 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.chapter-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.chapter-icon i {
    font-size: 2.5rem;
    color: white;
}

.visual-elements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.message-bubble {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.message-bubble:nth-child(2) {
    animation-delay: -1.5s;
}

.message-bubble i {
    color: white;
    font-size: 1.5rem;
}

.prep-element {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    margin: 0.5rem 0;
    animation: slideIn 0.6s ease-out;
    animation-delay: calc(var(--i, 0) * 0.2s);
    animation-fill-mode: both;
}

.prep-element i {
    font-size: 1.2rem;
}

.activity-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
}

.activity-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: scale(1.05);
}

.activity-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.closing-visual, .leadership-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.closing-step {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 80%;
    transition: transform 0.3s ease;
}

.closing-step:hover {
    transform: translateX(10px);
}

.closing-step i {
    font-size: 1.5rem;
}

.leader-element {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.leader-element i {
    font-size: 2rem;
    color: white;
}

.team-elements {
    display: flex;
    gap: 1rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.team-member i {
    color: white;
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Page Styles */
.mission-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    background: linear-gradient(135deg, var(--primary-color), #0ea5e9);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
}

.mission-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #64748b;
    line-height: 1.6;
}

.founder-section {
    padding: 4rem 0;
    background: white;
}

.founder-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-text h3 {
    color: #334155;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.founder-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.founder-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-placeholder {
    background: linear-gradient(135deg, var(--primary-color), #0ea5e9);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.founder-placeholder span {
    display: block;
    font-weight: 600;
}

.founder-placeholder span:first-of-type {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.founder-placeholder span:last-of-type {
    font-size: 1rem;
    opacity: 0.9;
}

.ai-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.ai-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.ai-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.ai-icon i {
    font-size: 3rem;
}

.ai-elements {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.ai-bubble {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(102, 126, 234, 0.2);
    animation: float 3s ease-in-out infinite;
}

.ai-bubble:nth-child(2) {
    animation-delay: -1s;
}

.ai-bubble:nth-child(3) {
    animation-delay: -2s;
}

.ai-bubble i {
    font-size: 1.5rem;
}

.ai-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ai-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.ai-features {
    space-y: 1rem;
}

.ai-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ai-feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.ai-feature span {
    color: #334155;
    font-size: 1rem;
}

/* Responsive Design for Playbook */
@media (max-width: 768px) {
    .chapter-content {
        grid-template-columns: 1fr;
    }
    
    .chapter-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .chapter-text {
        padding: 2rem;
    }
    
    .chapter-visual {
        min-height: 300px;
    }
    
    .playbook-intro {
        padding: 0 1rem;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ai-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-text h2, .ai-text h2 {
        font-size: 2rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: #f8fafc;
}

/* Contact page specific hero height */
.contact.html .hero,
body:has(.hero-title:contains("Start Your Journey")) .hero {
    min-height: 50vh;
}

.contact-hero, .faq-hero, .playbook-hero, .about-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.contact-hero .hero-content, .faq-hero .hero-content, .playbook-hero .hero-content, .about-hero .hero-content {
    text-align: center;
    width: 100%;
}

.playbook-hero .hero-content {
    padding-top: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-intro {
    margin-bottom: 2rem;
}

.contact-form-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(19, 127, 162, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(19, 127, 162, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.address-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.address-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.address-details p {
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.map-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 0 0 16px 16px;
}

/* FAQ Page Styles */
.faq-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-intro p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid #f1f5f9;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem 2rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Murphy Showcase Section */
.murphy-showcase {
    padding: 4rem 0;
    background: #f8fafc;
}

.murphy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.murphy-showcase .video-container {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.murphy-showcase .info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-info {
        order: -1;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.2rem 1.5rem 1.5rem;
    }
}

.service-card .btn {
    margin-top: 1.5rem;
}

/* Responsive Design for Offerings */
@media (max-width: 768px) {
    .offerings-title {
        font-size: 2.5rem;
    }
    
    .offerings-subtitle {
        font-size: 1.2rem;
    }
    
    .description-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .platform-mockup {
        width: 150px;
        height: 90px;
    }
}

.offerings-page {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.offerings-page .page-content {
    text-align: center;
    max-width: 600px;
}

.offerings-page p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ai-hero-title {
        font-size: 2.5rem;
    }
    
    .ai-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-cta-buttons {
        flex-direction: column;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0f6b8a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    overflow: hidden;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Carousel Styles */
.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
}

.slide-image {
    position: relative;
}

.slide-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.slide-content {
    padding: 2rem 0;
}

.slide-content .step-number {
    background: linear-gradient(135deg, var(--primary-color), #0f6b8a);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.slide-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-color);
}

/* Responsive carousel */
@media (max-width: 768px) {
    .carousel-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* AI Features Section */
.ai-features {
    padding: 6rem 0;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dashboard-preview {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.dashboard-title {
    font-weight: 600;
    color: var(--text-primary);
}

.dashboard-user {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.dashboard-stats {
    display: flex;
    gap: 2rem;
}

.dash-stat {
    text-align: center;
}

.dash-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.dash-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.feature-list i {
    color: #00ff88;
    width: 16px;
}

/* AI CTA Section */
.ai-cta {
    padding: 6rem 0;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.ai-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.ai-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-hero-content,
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ai-hero-stats {
        justify-content: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(51, 51, 51, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--surface-light);
    margin: 5% auto;
    padding: 3rem;
    border-radius: var(--border-radius-large);
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.modal-header p {
    color: var(--text-secondary);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .murphy-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .integrations-content,
    .workflow-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-header h2,
    .section-header-dark h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    max-width: 90vw;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.video-modal .video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.video-modal video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .video-modal-content {
        max-width: 95vw;
        max-height: 80vh;
    }
    
    .video-modal .video-container {
        max-width: 100%;
    }
}

/* Legal Links Styling */
.footer-legal {
    margin-top: 0.5rem;
    text-align: center;
}

.legal-link {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: rgba(0, 0, 0, 0.9);
    text-decoration: underline;
}

.legal-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
    font-size: 0.75rem;
}

.footer-links .legal-link {
    margin: 0 0.5rem;
    font-size: 0.75rem;
}

/* Legal Pages Styling */
.legal-page {
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.legal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.legal-content h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 500;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #555;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.last-updated {
    font-style: italic;
    color: #888;
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 1rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
}