/* ============================================
   The Digital Surgeons - Buff Motion Replica
   ============================================ */

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cyberpunk 2077 Theme - Night City Palette */
    --color-primary: #e0e0e0;        /* Light gray text for dark backgrounds */
    --color-highlight: #fcee0a;      /* Signature Cyberpunk yellow - main accent */
    --color-secondary: #0f1923;      /* Dark blue-gray - dark sections */
    --color-background: #050505;     /* Near true black - main background */
    --color-white: #ffffff;          /* Pure white for high contrast */
    --color-cyan: #00f0ff;           /* Electric cyan - secondary accent */
    --color-red: #ff003c;            /* Cyberpunk red - danger/warning accent */
    --font-primary: 'Space Grotesk', sans-serif;
    --font-code: 'Inconsolata', 'Courier New', monospace;
}

html {
    overflow-x: hidden;
}

html.lenis.lenis-smooth {
    scroll-behavior: auto;
}

html.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

html.lenis.lenis-stopped {
    overflow: hidden;
}

html.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
    cursor: none;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    opacity: 1;
}

.custom-cursor.hover {
    width: 80px;
    height: 80px;
}

.custom-cursor-dot {
    display: none;
}

::selection {
    background-color: var(--color-highlight);
    color: #000000;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 300;
    line-height: 1.2;
}

h2 {
    font-size: 9em;
    font-weight: 800;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: none;
}

button {
    cursor: none;
}

/* Logo (Non-sticky) */
.logo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem 2rem;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: -0.3px;
    display: inline-block;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

/* Sticky Menu Button */
.menu-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    cursor: none;
    z-index: 1000;
    padding: 0;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.menu-btn span {
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.menu-btn:hover span {
    background-color: var(--color-highlight);
}

.menu-btn:hover span:nth-child(1) {
    transform: translateY(-3px);
}

.menu-btn:hover span:nth-child(3) {
    transform: translateY(3px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-sidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    max-width: 90%;
    height: 100%;
    background-color: var(--color-background);
    border-left: 2px solid var(--color-highlight);
    padding: 3rem;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(252, 238, 10, 0.1);
}

.menu-overlay.active .menu-sidebar {
    transform: translateX(0);
}

.menu-close {
    background: none;
    border: 2px solid var(--color-highlight);
    border-radius: 180px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    margin-bottom: 3rem;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-highlight);
    transition: all 0.3s ease;
}

.menu-close:hover {
    background-color: var(--color-highlight);
    color: var(--color-background);
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 2rem;
}

.menu-link {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background-color: var(--color-highlight);
    transition: width 0.3s ease;
}

.menu-link:hover {
    color: var(--color-highlight);
    transform: translateX(10px);
}

.menu-link:hover::before {
    width: 15px;
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 0;
    position: relative;
    background: linear-gradient(to bottom,
        var(--color-background) 0%,
        var(--color-background) 62%,
        var(--color-secondary) 62%,
        var(--color-secondary) 88%,
        var(--color-background) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/cyberpunk-inspo/home-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: kenBurns 30s ease-in-out infinite alternate;
    mask-image: linear-gradient(to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 70%,
        rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 70%,
        rgba(0,0,0,0) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem 2rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 300;
    margin-top: 6rem;
    margin-bottom: 10rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: left;
}

.hero-title-light {
    font-weight: 200;
}

.hero-title-italic {
    font-weight: 900;
    font-style: normal;
    background-color: var(--color-highlight);
    color: #000000;
    display: inline-block;
}

/* Video Container */
.video-container {
    position: relative;
    max-width: 100%;
    margin: 3rem 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper video {
    animation: kenBurnsEnhanced 25s ease-in-out infinite alternate;
}

.video-wrapper:hover {
    transform: scale(1.02);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-highlight);
}

.video-play-btn svg {
    display: block;
}

.hero-description {
    max-width: 700px;
    margin: 2.5rem 0 3rem 0;
    font-size: 1.25rem;
    color: var(--color-primary);
    line-height: 1.6;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-primary);
    color: #000000;
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    border-radius: 180px;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
}

.cta-button:hover {
    background-color: var(--color-highlight);
    color: #000000;
    border-color: var(--color-highlight);
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: var(--color-primary);
}

.cta-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.cta-primary-large {
    padding: 1.25rem 3rem;
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
}

.cta-secondary-large {
    padding: 1.25rem 3rem;
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    background-color: transparent;
    color: var(--color-primary);
}

.cta-secondary-large:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* AI-Augmented Development Spotlight Section */
.ai-dev-spotlight-section {
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-secondary) 100%);
    padding: 6rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.ai-dev-spotlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    width: 75%;
    height: 100%;
    background: rgba(5, 5, 5, 0.4);
    pointer-events: none;
    z-index: 2;
    mask-image: linear-gradient(to right,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 70%,
        rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 70%,
        rgba(0,0,0,0) 100%);
}

.ai-dev-spotlight-section video {
    position: absolute;
    top: 0;
    left: -5%;
    width: 75%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
    mask-image: linear-gradient(to right,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 70%,
        rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 70%,
        rgba(0,0,0,0) 100%);
}

.ai-dev-spotlight-section .section-container {
    position: relative;
    z-index: 3;
}

.spotlight-header {
    text-align: right;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.spotlight-header h2,
.ai-dev-spotlight-section .section-title {
    text-align: right !important;
}

.spotlight-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(252, 238, 10, 0.15);
    border: 1px solid var(--color-highlight);
    border-radius: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-highlight);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.spotlight-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-primary);
    max-width: 800px;
    margin: 1.5rem 0 0 auto;
    line-height: 1.7;
    font-weight: 700;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.visual-card {
    background: linear-gradient(135deg, rgba(252, 238, 10, 0.1), rgba(15, 25, 35, 0.95));
    border: 3px solid var(--color-highlight);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 20px 60px rgba(252, 238, 10, 0.25);
}

.visual-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(252, 238, 10, 0.2);
}

.visual-stat .stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-highlight);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(252, 238, 10, 0.6);
}

.visual-stat .stat-label {
    font-size: 1.25rem;
    color: var(--color-white);
    font-weight: 500;
}

.spotlight-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.detail-block {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 238, 10, 0.1);
    border: 1px solid rgba(252, 238, 10, 0.3);
    border-radius: 12px;
    color: var(--color-highlight);
}

.detail-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.detail-text {
    font-size: 1.25rem;
    color: var(--color-primary);
    line-height: 1.7;
    font-weight: 300;
}

.spotlight-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* AI Products Section */
.ai-products-section {
    background-color: var(--color-background);
    padding: 4rem 0;
    position: relative;
}

.products-header {
    text-align: center;
    margin-bottom: 5rem;
}

.products-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-primary);
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
    font-weight: 300;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
}

.products-grid .product-card {
    grid-column: span 2;
}

.products-grid .product-card:nth-child(4) {
    grid-column: 2 / 4;
}

.products-grid .product-card:nth-child(5) {
    grid-column: 4 / 6;
}

.product-card {
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.95), rgba(10, 1, 24, 0.95));
    border: 2px solid rgba(252, 238, 10, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
}

.product-card:hover {
    border-color: var(--color-highlight);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(252, 238, 10, 0.25);
}

.product-card-featured {
    border: 3px solid var(--color-highlight);
    background: linear-gradient(135deg, rgba(252, 238, 10, 0.08), rgba(15, 25, 35, 0.95));
}

.product-tag {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, var(--color-highlight), #f5d800);
    color: var(--color-background);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(252, 238, 10, 0.4);
}

.product-tag-new {
    background: linear-gradient(135deg, var(--color-cyan), #00c8ff);
}

.product-icon {
    width: 64px;
    height: 64px;
    color: var(--color-highlight);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(252, 238, 10, 0.4));
}

.product-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.product-description {
    font-size: 1.25rem;
    color: var(--color-primary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

.products-cta {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    position: relative;
}

.product-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.feature-item svg {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--color-highlight);
}

.product-capabilities {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(252, 238, 10, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.capabilities-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-highlight);
    margin-bottom: 1rem;
}

.capabilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capabilities-list li {
    font-size: 1.25rem;
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.capabilities-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-highlight);
    font-weight: 600;
}

.product-insights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.insight-example {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(252, 238, 10, 0.05);
    border-left: 3px solid var(--color-highlight);
    border-radius: 8px;
}

.insight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.insight-example p {
    font-size: 1.25rem;
    color: var(--color-white);
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

.product-cta {
    margin-top: 2rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-highlight);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    position: relative;
}

.product-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-highlight);
    transition: width 0.3s ease;
}

.product-link:hover::after {
    width: calc(100% - 30px);
}

.product-link svg {
    transition: transform 0.3s ease;
}

.product-link:hover svg {
    transform: translateX(5px);
}

/* System Integrations Section */
.integrations-section {
    background: linear-gradient(to bottom, var(--color-secondary), var(--color-background));
    padding: 4rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.integrations-bg-image {
    position: absolute;
    top: 10%;
    right: 2%;
    width: 50%;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.integrations-section .section-container {
    position: relative;
    z-index: 2;
}

.integrations-header {
    text-align: left;
    margin-bottom: 5rem;
}

.integrations-header .section-title {
    text-align: left;
}

.integrations-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-primary);
    max-width: 700px;
    margin: 1.5rem 0 0 0;
    line-height: 1.6;
    font-weight: 300;
}

.integration-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.category-block {
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.8), rgba(10, 1, 24, 0.9));
    border: 2px solid rgba(252, 238, 10, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.category-block:hover {
    border-color: var(--color-highlight);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(252, 238, 10, 0.2);
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(252, 238, 10, 0.3);
    padding-bottom: 1rem;
}

.platform-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.platform-item {
    padding: 0.875rem 1.25rem;
    background: rgba(252, 238, 10, 0.08);
    border: 1px solid rgba(252, 238, 10, 0.25);
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-primary);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-100px);
}

.platform-item.drop-in {
    animation: dropDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.platform-item:hover {
    background: rgba(252, 238, 10, 0.15);
    border-color: var(--color-highlight);
    color: var(--color-white);
    transform: scale(1.05);
}

@keyframes dropDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.integration-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.integration-feature {
    text-align: center;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(252, 238, 10, 0.15), rgba(0, 240, 255, 0.1));
    border: 2px solid var(--color-highlight);
    border-radius: 50%;
    color: var(--color-highlight);
    transition: all 0.3s ease;
}

.integration-feature:hover .feature-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(252, 238, 10, 0.4);
}

.feature-title-large {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 1.25rem;
    color: var(--color-primary);
    line-height: 1.7;
    font-weight: 300;
}

.integrations-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(252, 238, 10, 0.08), rgba(0, 240, 255, 0.05));
    border: 2px solid var(--color-highlight);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.integrations-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 238, 10, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.integrations-cta-text {
    font-size: 1.25rem;
    color: var(--color-white);
    font-weight: 400;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* AI Strategy Impact Section */
.ai-impact-section {
    background: linear-gradient(to bottom, var(--color-background) 0%, var(--color-background) 70%, rgba(252, 238, 10, 0.05) 100%);
    padding: 4rem 0 12rem 0;
    color: var(--color-primary);
    position: relative;
}

.ai-impact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(to bottom, transparent 0%, rgba(252, 238, 10, 0.08) 50%, rgba(0, 240, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

.ai-impact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ai-impact-header .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.ai-impact-header .section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-primary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.ai-impact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.chart-container {
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.8), rgba(10, 1, 24, 0.9));
    border: 2px solid rgba(252, 238, 10, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    height: 500px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(252, 238, 10, 0.1);
}

.ai-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ai-stat-card {
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.6), rgba(10, 1, 24, 0.8));
    border: 2px solid rgba(252, 238, 10, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 238, 10, 0.1), transparent);
    transition: left 0.5s ease;
}

.ai-stat-card:hover::before {
    left: 100%;
}

.ai-stat-card:hover {
    border-color: var(--color-highlight);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(252, 238, 10, 0.2);
}

.ai-stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-highlight);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(252, 238, 10, 0.5);
}

.ai-stat-label {
    font-size: 1.25rem;
    color: var(--color-primary);
    line-height: 1.4;
}

.ai-impact-warning {
    background: linear-gradient(135deg, rgba(255, 0, 60, 0.15), rgba(252, 238, 10, 0.08));
    border: 3px solid var(--color-highlight);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(252, 238, 10, 0.15),
                inset 0 1px 0 rgba(252, 238, 10, 0.1);
    position: relative;
    overflow: hidden;
}

.ai-impact-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 238, 10, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.warning-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--color-highlight);
    filter: drop-shadow(0 0 10px rgba(252, 238, 10, 0.5));
}

.ai-impact-warning p {
    color: var(--color-white);
    font-size: 1.25rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.ai-impact-warning strong {
    color: var(--color-highlight);
    font-size: 1.25rem;
}

.ai-source {
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
    opacity: 0.5;
}

.ai-source p {
    margin: 0;
    font-size: 1.25rem;
    color: #808080;
    font-weight: 300;
}

.ai-source a {
    color: #808080;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ai-source a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.ai-impact-quote {
    position: relative;
    z-index: 1;
    margin-top: 8rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.quote-mark {
    font-size: clamp(8rem, 15vw, 12rem);
    font-family: Georgia, serif;
    color: var(--color-highlight);
    line-height: 0.8;
    margin-bottom: 1rem;
    opacity: 0.4;
    font-weight: 700;
}

.quote-text {
    margin: 0;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quote-highlight {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    display: block;
    text-shadow: 0 0 40px rgba(252, 238, 10, 0.3);
}

.quote-body {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1.6;
    display: block;
    max-width: 900px;
}

/* Value Props Section */
.value-props-section {
    background-color: var(--color-secondary);
    padding: 6rem 0;
    color: var(--color-white);
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-prop-card {
    background-color: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.value-prop-card:hover {
    transform: translateY(-8px);
}

.value-prop-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--color-highlight);
}

.value-prop-title {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.value-prop-description {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--color-primary);
    opacity: 1;
}

/* Services Strip Section */
.services-strip-section {
    background-color: var(--color-secondary);
    padding: 4rem 0;
}

.services-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.service-item {
    padding: 1rem 2rem;
    border: 1px solid var(--color-white);
    border-radius: 180px;
    transition: all 0.3s ease;
    display: inline-block;
    color: var(--color-white);
}

.service-item:hover {
    background-color: var(--color-highlight);
    color: var(--color-primary);
    border-color: var(--color-highlight);
    transform: translateY(-2px);
}

.service-label {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Social Proof Section */
.social-proof-section {
    background-color: var(--color-background);
    padding: 6rem 0;
}

.section-title-small {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.7;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.logo-item {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.6;
    padding: 1rem 2rem;
    border: 1px solid rgba(41, 41, 41, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 120px;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-4px);
    border-color: rgba(41, 41, 41, 0.2);
}

.logo-item:hover img {
    filter: grayscale(0%);
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--color-highlight);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-primary);
    opacity: 0.8;
}

/* Video Demo Section */
.video-demo-section {
    background-color: var(--color-secondary);
    padding: 6rem 0;
    color: var(--color-white);
}

.video-description {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 300;
    margin-top: 2rem;
    color: var(--color-white);
    opacity: 0.8;
}

/* Trust Strip Section */
.trust-strip-section {
    background-color: var(--color-background);
    padding: 4rem 0;
    border-top: 1px solid rgba(41, 41, 41, 0.1);
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    width: 32px;
    height: 32px;
    color: var(--color-highlight);
}

.trust-label {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-primary);
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(to bottom, var(--color-background) 0%, rgba(252, 238, 10, 0.05) 15%, rgba(252, 238, 10, 0.15) 40%, rgba(252, 238, 10, 0.25) 60%, rgba(0, 240, 255, 0.15) 100%);
    position: relative;
    padding: 10rem 0 8rem 0;
    overflow: hidden;
    margin-top: -6rem;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    background-image: url('../images/cyberpunk-inspo/cp-inspo1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
    animation: kenBurnsEnhanced 30s ease-in-out infinite alternate;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(252, 238, 10, 0.2), rgba(0, 240, 255, 0.1));
    z-index: 1;
    pointer-events: none;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(252, 238, 10, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.cta-title-large {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(252, 238, 10, 0.3);
}

.cta-description-large {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 3rem;
    color: #1a1a1a;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-button-hero {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: var(--color-highlight);
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    border-radius: 50px;
    border: 3px solid var(--color-highlight);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(252, 238, 10, 0.4);
}

.cta-button-hero:hover {
    background: linear-gradient(135deg, var(--color-highlight), #f5d800);
    color: #000000;
    border-color: var(--color-highlight);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 50px rgba(252, 238, 10, 0.6);
}

.cta-note {
    font-size: 1.25rem;
    color: #000000;
    font-weight: 500;
    margin: 0;
}

/* Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    font-size: 9em;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.video-demo-section .section-title {
    color: var(--color-white);
}

/* Solutions Grid Section */
.solutions-grid-section {
    background-color: var(--color-background);
    padding: 4rem 0 6rem 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.solution-tile {
    background-color: var(--color-white);
    border: 1px solid rgba(41, 41, 41, 0.1);
    border-radius: 12px;
    padding: 3rem;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.solution-tile:hover {
    transform: translateY(-8px);
    border-color: var(--color-highlight);
    box-shadow: 0 12px 24px rgba(41, 41, 41, 0.08);
}

.solution-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 2rem;
    color: var(--color-highlight);
}

.solution-title {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.solution-description {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--color-primary);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.solution-tag {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(41, 41, 41, 0.2);
    border-radius: 180px;
    font-size: 1.25rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.solution-tile:hover .solution-tag {
    border-color: var(--color-highlight);
    color: var(--color-highlight);
}

/* Pricing Section */
.pricing-section {
    background-color: var(--color-secondary);
    padding: 6rem 0;
    color: var(--color-white);
}

.pricing-section .section-title {
    color: var(--color-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.pricing-card {
    background-color: var(--color-white);
    border: 1px solid rgba(41, 41, 41, 0.1);
    border-radius: 12px;
    padding: 3rem;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(41, 41, 41, 0.08);
}

.pricing-card-featured {
    border: 2px solid var(--color-highlight);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: var(--color-highlight);
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 180px;
    font-size: 1.25rem;
    font-weight: 300;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-tier {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.pricing-tagline {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.7;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-highlight);
}

.price-period {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.7;
}

.pricing-description {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(41, 41, 41, 0.1);
}

.pricing-features {
    margin-bottom: 2rem;
}

.features-title {
    font-size: 1.25rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
}

.feature-item svg {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--color-highlight);
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    border-radius: 180px;
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
}

.pricing-cta:hover {
    background-color: var(--color-highlight);
    color: var(--color-primary);
    border-color: var(--color-highlight);
    transform: translateY(-2px);
}

.pricing-cta-featured {
    background-color: var(--color-highlight);
    color: var(--color-primary);
    border-color: var(--color-highlight);
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
}

.pricing-cta-featured:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Add-ons Section */
.addons-section {
    background-color: var(--color-background);
    padding: 6rem 0;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.addon-card {
    background-color: var(--color-white);
    border: 1px solid rgba(41, 41, 41, 0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(41, 41, 41, 0.06);
}

.addon-title {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.addon-description {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.addon-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-highlight);
}

/* FAQ Section */
.faq-section {
    background-color: var(--color-secondary);
    padding: 6rem 0;
    color: var(--color-white);
}

.faq-section .section-title {
    color: var(--color-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.8;
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--color-background);
    padding: 4rem 0 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-box {
    position: sticky;
    top: 2rem;
}

.info-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.info-description {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.method-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(41, 41, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-highlight);
}

.method-details h4 {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.method-details a {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-primary);
}

.method-details a:hover {
    color: var(--color-highlight);
}

.method-details p {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.8;
}

.prequal-form-box {
    background-color: var(--color-secondary);
    border-radius: 12px;
    padding: 3rem;
    color: var(--color-white);
}

.form-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.form-description {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    color: var(--color-white);
}

.prequal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background-color: var(--color-white);
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-highlight);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 300;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.submit-button {
    padding: 1rem 2.5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 180px;
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    cursor: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.submit-button:hover {
    background-color: var(--color-highlight);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(4px);
}

.form-note {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.6;
    margin-top: -0.5rem;
}

/* Projects Section */
.projects-section {
    background-color: var(--color-background);
    padding: 6rem 0;
}

.project-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 1.5rem;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--color-primary);
    opacity: 0.7;
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 1.25rem;
}

.project-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 180px;
    font-size: 1.25rem;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--color-secondary);
    padding: 6rem 0;
}

.testimonial-card {
    padding: 3rem;
    background-color: var(--color-white);
    border-radius: 12px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--color-primary);
}

.testimonial-author {
    border-top: 1px solid rgba(41, 41, 41, 0.1);
    padding-top: 1.5rem;
}

.author-name {
    font-weight: 300;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.author-title {
    opacity: 0.7;
    font-size: 1.25rem;
    font-weight: 300;
}

/* Studio Section */
.studio-section {
    background-color: var(--color-background);
    padding: 6rem 0;
}

.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.studio-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.studio-image {
    border-radius: 12px;
    overflow: hidden;
}

.studio-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    background-color: var(--color-background);
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.contact-item a {
    font-size: 1.25rem;
}

.contact-item a:hover {
    color: var(--color-primary);
    opacity: 0.7;
}

.contact-item p {
    font-size: 1.25rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: #f5f5f5;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-primary);
    opacity: 0.5;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    padding: 1rem 2.5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 180px;
    font-weight: 900;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: var(--color-highlight);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background: linear-gradient(to bottom, var(--color-background), #000000);
    color: var(--color-primary);
    border-top: 1px solid rgba(252, 238, 10, 0.2);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(252, 238, 10, 0.15);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 300;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-size: 1.25rem;
    color: var(--color-primary);
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.8;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-column-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-highlight);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.875rem;
}

.footer-menu a {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 300;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--color-highlight);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    color: var(--color-primary);
    opacity: 0.6;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--color-primary);
    font-weight: 300;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-highlight);
    opacity: 1;
}

/* Splide Customization */
.splide__arrow {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    width: 3rem;
    height: 3rem;
    opacity: 1;
}

.splide__arrow:hover {
    background-color: var(--color-highlight);
    border-color: var(--color-primary);
}

.splide__arrow:disabled {
    opacity: 0.4;
}

.splide__arrow svg {
    fill: var(--color-primary);
}

.splide__pagination__page {
    background-color: var(--color-secondary);
    opacity: 1;
}

.splide__pagination__page.is-active {
    background-color: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .studio-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-grid,
    .addons-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-box {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* New Sections - Tablet */
    .spotlight-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .products-grid .product-card {
        grid-column: span 1;
    }

    .products-grid .product-card:nth-child(4),
    .products-grid .product-card:nth-child(5) {
        grid-column: span 1;
    }

    .integration-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .integrations-bg-image {
        width: 60%;
        opacity: 0.1;
    }

    .integration-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .ai-impact-quote {
        margin-top: 6rem;
    }

    .quote-mark {
        font-size: clamp(6rem, 12vw, 10rem);
    }
}

@media (max-width: 768px) {
    .menu-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .menu-link {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-container {
        padding: 4rem 1.5rem;
    }

    .ai-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .value-props-section,
    .social-proof-section,
    .video-demo-section,
    .trust-strip-section {
        padding: 4rem 0;
    }

    .final-cta-section {
        padding: 5rem 0;
    }

    .testimonial-card {
        padding: 2rem;
        min-height: auto;
    }

    .testimonial-text {
        font-size: 1.25rem;
    }

    .contact-form {
        order: 2;
    }

    .services-strip {
        justify-content: flex-start;
    }

    .client-logos {
        gap: 1.5rem;
    }

    /* New Sections - Mobile */
    .hero-section {
        min-height: 85vh;
        padding-bottom: 2rem;
    }

    .ai-dev-spotlight-section {
        padding: 2rem 0 5rem 0;
    }

    .ai-dev-spotlight-section video {
        width: 100%;
        left: 0;
        opacity: 0.15;
    }

    .ai-dev-spotlight-section::before {
        width: 100%;
        left: 0;
    }

    .spotlight-content {
        gap: 2rem;
    }

    .visual-card {
        padding: 2rem 1.5rem;
    }

    .detail-block {
        flex-direction: column;
        gap: 1rem;
    }

    .ai-products-section {
        padding: 5rem 0;
    }

    .product-card {
        padding: 2rem;
    }

    .integrations-section {
        padding: 5rem 0;
    }

    .category-block {
        padding: 2rem;
    }

    .platform-logos {
        grid-template-columns: 1fr;
    }

    .integrations-cta {
        padding: 2rem;
    }

    .integrations-bg-image {
        width: 70%;
        top: 5%;
        right: 0;
        opacity: 0.08;
    }

    .ai-impact-quote {
        margin-top: 5rem;
        padding: 0 1.5rem;
    }

    .quote-mark {
        font-size: clamp(5rem, 10vw, 8rem);
    }

    .quote-text {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        padding: 1.5rem 1rem;
    }

    .logo-image {
        height: 45px;
    }

    .menu-btn {
        padding: 0.6rem 1.2rem;
        top: 1.5rem;
        right: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .menu-link {
        font-size: 1.75rem;
    }

    .value-prop-card {
        padding: 2rem 1.5rem;
    }

    .cta-primary-large,
    .cta-secondary-large {
        padding: 1rem 2rem;
        font-size: 1.25rem;
    }

    .ai-stats-grid {
        grid-template-columns: 1fr;
    }

    .integrations-bg-image {
        width: 80%;
        opacity: 0.05;
    }

    .visual-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .category-block {
        padding: 1.5rem;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.loading-screen.slide-up {
    transform: translateY(-100%);
}

.loading-logo {
    width: 200px;
    height: auto;
    animation: logoFade 1.5s ease-in-out infinite;
}

@keyframes logoFade {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--color-highlight);
    border-color: var(--color-highlight);
    transform: translateY(-4px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: #000000;
    transition: color 0.3s ease;
}

.scroll-to-top:hover svg {
    color: #000000;
}

.scroll-to-top.dark-mode {
    border-color: #000000;
    background-color: rgba(255, 255, 255, 0.9);
}

.scroll-to-top.dark-mode svg {
    color: #000000;
}

.scroll-to-top.dark-mode:hover {
    background-color: #000000;
    border-color: #000000;
}

.scroll-to-top.dark-mode:hover svg {
    color: var(--color-highlight);
}

/* Smooth Animations */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

@keyframes kenBurnsEnhanced {
    0% {
        transform: scale(1) translateX(0) translateY(0);
    }
    25% {
        transform: scale(1.12) translateX(-2%) translateY(-2%);
    }
    50% {
        transform: scale(1.15) translateX(2%) translateY(1%);
    }
    75% {
        transform: scale(1.12) translateX(-1%) translateY(2%);
    }
    100% {
        transform: scale(1) translateX(0) translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animation Classes (Creative Agency Style) */
.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-large {
    opacity: 0;
    transform: translateY(80px) scale(0.98);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-large.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-scale {
    opacity: 0;
    transform: scale(0.92) translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-scale.animate-in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Split text line animation */
.split-lines {
    overflow: hidden;
}

.split-lines .line {
    display: block;
    overflow: hidden;
}

.split-lines .line span {
    display: block;
    transform: translateY(120%);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-lines.animate-in .line span {
    transform: translateY(0);
}

/* Character reveal animation */
.char-reveal {
    overflow: hidden;
    display: inline-block;
}

.char-reveal .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%) rotateX(-90deg);
    transform-origin: center bottom;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.char-reveal.animate-in .char {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* Slide reveal with mask */
.slide-reveal {
    position: relative;
    overflow: hidden;
}

.slide-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-cyan));
    transform: translateX(-100%);
    transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 1;
}

.slide-reveal.animate-in::after {
    transform: translateX(100%);
}

/* Parallax fade */
.parallax-fade {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.parallax-fade.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar - Smooth Movement */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-white);
}

::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) var(--color-white);
}
