/* ========================================
   Home Page Styles - Bold AF Edition
   ======================================== */

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(90, 50, 138, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 1000px;
}

.hero h1 {
    color: var(--color-white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 0;
    line-height: 1.1;
}

.hero-headline-secondary {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-teal);
    margin-bottom: 32px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--color-white);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-purple);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* ========================================
   Logo Bar Section
   ======================================== */
.logo-bar {
    padding: 60px 0;
    background: var(--color-dark);
    background-image: url('../images/backgrounds/data-pattern.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.logo-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(36, 41, 28, 0.4) 0%, rgba(36, 41, 28, 0.85) 100%);
}

.logo-bar .container {
    position: relative;
    z-index: 1;
}

.logo-bar-title {
    text-align: center;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--color-white);
    margin-bottom: 40px;
    font-weight: 400;
}

.logo-carousel {
    overflow: hidden;
    margin: 0 auto 32px;
}

.logo-track {
    display: flex;
    gap: 32px;
    animation: scroll 60s linear infinite;
    width: max-content;
}

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

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

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: var(--color-white);
    border-radius: 8px;
    flex-shrink: 0;
}

.logo-item img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

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

.logo-bar-note {
    text-align: center;
    color: var(--color-white);
    font-size: 16px;
    font-style: italic;
    opacity: 0.8;
}

/* ========================================
   Problem Section
   ======================================== */
.problem-section {
    padding: 100px 0;
    background: var(--color-white);
}

.problem-section .problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.problem-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 32px;
    text-align: center;
}

.problem-section p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.problem-section .problem-highlight {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--color-purple);
    font-weight: 700;
    margin: 40px 0;
    text-align: center;
}

.problem-section .problem-cta {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    text-align: center;
    margin-top: 40px;
    color: var(--color-purple);
}

/* ========================================
   What We Do Section
   ======================================== */
.what-we-do {
    padding: 100px 0;
    background: var(--color-teal);
}

.what-we-do h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-dark);
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-dark);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pillars-grid {
    display: grid;
    gap: 32px;
}

.pillar-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--color-purple);
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pillar-card h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    color: var(--color-purple);
    margin-bottom: 20px;
}

.pillar-card p {
    color: var(--color-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.pillar-card .pillar-cta {
    font-family: var(--font-heading);
    color: var(--color-purple);
    font-weight: 600;
    margin-top: auto;
    padding-top: 16px;
    margin-bottom: 0;
}

/* ========================================
   Philosophy Section
   ======================================== */
.philosophy-section {
    padding: 100px 0;
    background: var(--color-dark);
}

.philosophy-section h2 {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-teal);
    margin-bottom: 48px;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 24px;
}

.philosophy-content .philosophy-highlight {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-teal);
    margin: 40px 0;
}

.philosophy-content .philosophy-bold {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--color-white);
    margin-top: 40px;
}

/* ========================================
   Difference Section
   ======================================== */
.difference-section {
    padding: 100px 0;
    background: var(--color-white);
    text-align: center;
}

.difference-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 40px;
}

.difference-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.difference-content p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--color-dark);
    line-height: 1.8;
    margin-bottom: 24px;
}

.difference-content .difference-highlight {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--color-purple);
    margin-top: 40px;
}

.team-summary {
    display: grid;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.team-member {
    background: var(--color-light);
    padding: 24px 32px;
    border-radius: 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-member strong {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-purple);
}

.team-member span {
    color: var(--color-dark);
    font-size: 1rem;
}

/* ========================================
   Proof Section
   ======================================== */
.proof-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(137, 213, 210, 0.2) 0%, rgba(225, 236, 246, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.proof-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/backgrounds/digital-swirl.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    pointer-events: none;
}

.proof-section .container {
    position: relative;
    z-index: 1;
}

.proof-section h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.proof-section .section-intro {
    color: var(--color-dark);
}

.case-studies-grid {
    display: grid;
    gap: 24px;
}

.case-study-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.case-study-stat {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--color-teal);
    margin-bottom: 12px;
    font-weight: 700;
    background: var(--color-dark);
    display: block;
    padding: 16px 24px;
    border-radius: 8px;
}

.case-study-card h4 {
    font-size: 1.25rem;
    color: var(--color-purple);
    margin-bottom: 12px;
}

.case-study-card p {
    color: var(--color-dark);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Start Small Section
   ======================================== */
.start-small-section {
    padding: 100px 0;
    background: var(--color-white);
}

.start-small-section h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.start-small-section .section-intro {
    color: var(--color-dark);
}

.options-grid {
    display: grid;
    gap: 32px;
}

.option-card {
    background: var(--color-light);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.option-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    color: var(--color-purple);
}

.option-icon svg {
    width: 100%;
    height: 100%;
}

.option-card h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    color: var(--color-purple);
    margin-bottom: 12px;
}

.option-card .option-commitment {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-teal);
    background: var(--color-dark);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.option-card p {
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: 24px;
}

.option-card .btn {
    width: 100%;
    max-width: 280px;
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #5a328a 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-white);
    margin-bottom: 32px;
}

.final-cta p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-white);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 24px;
    opacity: 0.9;
}

.final-cta .final-cta-highlight {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--color-teal);
    margin: 40px auto;
    opacity: 1;
}

.final-cta .btn {
    margin-bottom: 32px;
}

.final-cta-contact {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.final-cta-contact a {
    color: var(--color-white);
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.final-cta-contact a:hover {
    color: var(--color-teal);
}

.final-cta-contact span {
    color: var(--color-white);
    opacity: 0.5;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-summary {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1025px) {
    .hero {
        min-height: 100vh;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 90vh;
        padding-top: 80px;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero-headline-secondary {
        font-size: clamp(1.5rem, 6vw, 2rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

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

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

    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
    }

    .logo-track {
        gap: 20px;
    }

    .logo-item {
        padding: 12px 16px;
    }

    .logo-item img {
        max-width: 100px;
        max-height: 45px;
    }

    .problem-section,
    .what-we-do,
    .philosophy-section,
    .difference-section,
    .proof-section,
    .start-small-section {
        padding: 60px 0;
    }

    .pillar-card,
    .option-card,
    .case-study-card {
        padding: 32px 24px;
    }

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

    .final-cta {
        padding: 80px 0;
    }
}
