@font-face {
    font-family: 'Asap Symbol';
    src: url('https://aiheadshotpro.io/assets/fonts/woff2/Asap-Symbol.woff2') format('woff2'),
        url('https://aiheadshotpro.io/assets/fonts/woff/Asap-Symbol.woff asap-symbol.woff') format('woff'),
        url('https://aiheadshotpro.io/assets/fonts/ttf/Asap-Symbol.ttf') format('truetype');
}

body {
    font-family: 'Asap Symbol',"Microsoft YaHei","Hiragino Sans GB","PingFang SC","Helvetica","Helvetica Neue","BlinkMacSystemFont",sans-serif;
}
/* Added CSS custom properties for all colors */
:root {
    --color-primary: #1976D2;
    --color-secondary: #4FC3F7;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-blue-50: #eff6ff;
    --color-blue-100: #dbeafe;
    --color-yellow-50: #fffbeb;
    --color-green-600: #059669;
    --color-orange: #ff8c00;
    --color-trustpilot: #00b67a;
    --color-upload-bg: #fafbff;
    --color-upload-hover: #f0f8ff;
    --color-upload-dragover: #e3f2fd;
    --color-border: #e5e7eb;
    --color-border-hover: #d1d5db;
    --color-shadow: rgba(0, 0, 0, 0.05);
    --color-shadow-hover: rgba(0, 0, 0, 0.08);
    --color-shadow-strong: rgba(0, 0, 0, 0.12);
    --color-primary-shadow: rgba(25, 118, 210, 0.15);
    --color-primary-shadow-hover: rgba(25, 118, 210, 0.3);
    --color-primary-shadow-strong: rgba(25, 118, 210, 0.4);
}

* {
    font-family: 'Inter', system-ui, sans-serif;
}

.gradient-bg {
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.upload-area {
    border: 2px dashed var(--color-primary);
    transition: all 0.3s ease;
    background: var(--color-upload-bg);
}

.upload-area:hover {
    border-color: var(--color-secondary);
    background-color: var(--color-upload-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-primary-shadow);
}

.upload-area.dragover {
    border-color: var(--color-secondary);
    background-color: var(--color-upload-dragover);
    transform: scale(1.02);
}

.faq-grid {
    column-count: 2;
    column-gap: 1.5rem;
}

.faq-item {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .faq-grid {
        column-count: 1;
    }
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: all 0.2s ease;
    background: var(--color-white);
}

.faq-item:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 2px 8px var(--color-shadow);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content.active {
    max-height: 200px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--color-shadow-hover);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--color-shadow-strong);
}

.star-rating {
    color: var(--color-orange);
    font-size: 16px;
}

.headshots-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.headshots-track {
    display: flex;
    gap:1rem;
  	will-change:transform;
  	animation:marquee var(--duration,30s) linear infinite;
}

.headshots-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(calc(var(--scroll-distance,0px)*-1));
  }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.headshot-item {
    flex: 0 0 120px;
    margin-right: 1rem;
}

.trustpilot-stars {
    color: var(--color-trustpilot);
    font-size: 18px;
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid var(--color-gray-100);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-border);
}

.hero-title {
    background: linear-gradient(135deg, var(--color-gray-800) 0%, var(--color-gray-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1565C0 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--color-primary-shadow-hover);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-primary-shadow-strong);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.section-padding {
    padding: 80px 0;
}

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

.text-balance {
    text-wrap: balance;
}

.headshot-gallery img {
    transition: all 0.3s ease;
}

.headshot-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.nav-shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.trustpilot-badge {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 15px var(--color-shadow-hover);
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 50px;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero .number {
    color: var(--color-secondary);
}

.hero .highlight {
    color: var(--color-primary);
}

.hero .text {
    color: #475569;
}

/* Company Logos */
.companies {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 76px;
    align-items: center;
    margin-bottom: 80px;
    opacity: 0.7;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #64748b;
}

/* Testimonials Section */
.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.testimonial {
    text-align: center;
}

.testimonial-header {
    margin-bottom: 20px;
}

.testimonial-name {
    font-weight: 700;
    color: #14b8a6;
    font-size: 1.1rem;
}

.testimonial-title {
    color: #64748b;
    font-size: 0.95rem;
}

.photo-sequence {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.photo-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border: 2px solid #e2e8f0;
    overflow: hidden;
}

.quote-section {
    text-align: center;
    margin: 40px 0;
}

.quote {
    font-size: 1.3rem;
    color: #64748b;
    font-style: italic;
    position: relative;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 2rem;
    color: #cbd5e1;
    position: absolute;
    top: -10px;
}

.quote::before {
    left: -20px;
}

.quote::after {
    right: -20px;
}

/* AI Generated Photos */
.ai-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.ai-photo {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.ai-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .companies {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .testimonials {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ai-photos {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-sequence {
        gap: 4px;
    }

    .photo-item {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .companies {
        grid-template-columns: repeat(2, 1fr);
    }

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