/*
Theme Name: Brian Hess
Author: Brian Hess
Description: Custom theme for realbrianhess.com
Version: 1.0
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #04080d;
    color: #e8e8e8;
    overflow-x: hidden;
    position: relative;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' seed='2' /%3E%3CfeColorMatrix type='saturate' values='0.3'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Ambient blobs - warm glow */
.blob {
    position: fixed;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #F5C518 0%, transparent 70%);
    top: -200px;
    right: -300px;
    animation: float 20s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #b86e0a 0%, transparent 70%);
    bottom: 200px;
    left: -250px;
    animation: float 25s ease-in-out infinite reverse;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #F5C518 0%, transparent 70%);
    bottom: -150px;
    right: 10%;
    animation: float 22s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-30px) translateX(20px); }
}

/* Warm horizon glow at bottom */
body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(to top, rgba(245, 197, 24, 0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Custom cursor */
* {
    cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3' fill='%23F5C518'/%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='%23F5C518' stroke-width='1'/%3E%3C/svg%3E") 12 12, auto;
}

a, button, input[type="button"], input[type="submit"], [role="button"] {
    cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='5' fill='%23F5C518'/%3E%3Ccircle cx='16' cy='16' r='12' fill='none' stroke='%23F5C518' stroke-width='1.5'/%3E%3C/svg%3E") 16 16, auto;
}

@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }
}

/* Glass effect base */
.glass {
    backdrop-filter: blur(32px) saturate(200%) brightness(1.08);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
}

.glass-hover {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glass-hover:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 197, 24, 0.5);
    box-shadow: 0 20px 60px rgba(245, 197, 24, 0.15),
                inset 0 1px 0 rgba(245, 197, 24, 0.3);
}

/* Shine streak animation */
.shine-streak {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

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

/* Light orbs inside glass */
.light-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
}

p {
    font-weight: 300;
    line-height: 1.8;
}

.subtitle {
    font-weight: 400;
    font-size: 1.1rem;
}

.accent, .ht-accent, .ac {
    background: linear-gradient(135deg, #F5C518 0%, #b86e0a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #F5C518 0%, #b86e0a 100%);
    color: #04080d;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-primary:hover {
    box-shadow: 0 10px 40px rgba(245, 197, 24, 0.3);
    transform: translateY(-3px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.07);
    color: #e8e8e8;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 197, 24, 0.5);
    box-shadow: 0 10px 40px rgba(245, 197, 24, 0.1);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

nav.scrolled {
    backdrop-filter: blur(32px) saturate(200%) brightness(1.08);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 40px;
}

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

.logo-signature {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-signature {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F5C518, #b86e0a);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 15px;
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Sections */
section {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Scroll reveal */
.rv {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rv.in {
    opacity: 1;
    transform: translateY(0);
}

.rv.d1 { transition-delay: 0.1s; }
.rv.d2 { transition-delay: 0.2s; }
.rv.d3 { transition-delay: 0.3s; }
.rv.d4 { transition-delay: 0.4s; }
.rv.d5 { transition-delay: 0.5s; }

/* Badge pill */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: 32px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #F5C518;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #F5C518;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 40px 60px;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(245, 197, 24, 0.08));
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text {
        text-align: center;
        order: 2;
    }
    .hero-image {
        order: 1;
    }
    .hero-image img {
        max-height: 50vh;
    }
    .hero-bullets {
        justify-content: center;
    }
    .hero-cta {
        justify-content: center;
    }
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: #a8a8a8;
    max-width: 600px;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1rem;
    font-style: italic;
    color: #888;
    margin-bottom: 40px;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-bullet {
    padding: 8px 20px;
    background: rgba(245, 197, 24, 0.08);
    border: 1px solid rgba(245, 197, 24, 0.2);
    border-radius: 24px;
    font-size: 0.85rem;
    color: #F5C518;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 80px;
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: bounce 2s ease-in-out infinite;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(245, 197, 24, 0.5);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-icon::after {
    content: '';
    width: 3px;
    height: 8px;
    background: rgba(245, 197, 24, 0.5);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }

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

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

    .hero-bullets {
        flex-wrap: wrap;
    }

    .hero-cta {
        flex-direction: column;
    }
}

/* Stats Band */
.stats-band {
    background: rgba(255, 255, 255, 0.07);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    margin: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F5C518 0%, #b86e0a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #a8a8a8;
}

@media (max-width: 768px) {
    .stats-band {
        padding: 40px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

/* Problem Section */
.problem {
    padding: 120px 40px;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F5C518;
    margin-bottom: 12px;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    max-width: 800px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #a8a8a8;
    max-width: 700px;
    margin-bottom: 60px;
    line-height: 1.8;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.problem-card {
    position: relative;
    padding: 40px;
    overflow: hidden;
}

.problem-card.red {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.problem-card.gold {
    border-color: rgba(245, 197, 24, 0.3);
    background: rgba(245, 197, 24, 0.05);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #e8e8e8;
}

.problem-card ul {
    list-style: none;
}

.problem-card li {
    padding: 10px 0;
    color: #a8a8a8;
    font-weight: 300;
    position: relative;
    padding-left: 24px;
}

.problem-card.red li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 800;
    font-size: 1.2rem;
}

.problem-card.gold li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F5C518;
    font-weight: 800;
}

@media (max-width: 768px) {
    .problem {
        padding: 80px 20px;
    }

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

    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* Ecosystem Section */
.ecosystem {
    padding: 120px 40px;
}

.flywheel {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 60px auto;
    align-items: center;
    position: relative;
}

.flywheel-node {
    position: relative;
    padding: 30px 20px;
    text-align: center;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flywheel-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.flywheel-node h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F5C518;
}

.flywheel-node p {
    font-size: 0.85rem;
    color: #a8a8a8;
    line-height: 1.6;
}

.flywheel-node a {
    color: inherit;
    text-decoration: none;
}

.flywheel-connector {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, rgba(245, 197, 24, 0.5), transparent);
}

.flywheel-node:last-child .flywheel-connector {
    display: none;
}

@media (max-width: 1024px) {
    .flywheel {
        grid-template-columns: repeat(3, 1fr);
    }

    .flywheel-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .ecosystem {
        padding: 80px 20px;
    }

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

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

/* Company Showcase */
.companies {
    padding: 120px 40px;
}

.company-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.company-mock {
    position: relative;
    height: 600px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-card-item {
    padding: 24px;
    background: rgba(245, 197, 24, 0.08);
    border: 1px solid rgba(245, 197, 24, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.company-card-item:hover {
    background: rgba(245, 197, 24, 0.15);
    border-color: rgba(245, 197, 24, 0.5);
    transform: translateX(8px);
}

.company-card-item h4 {
    font-size: 0.95rem;
    color: #F5C518;
}

.company-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.company-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.company-item:hover {
    background: rgba(245, 197, 24, 0.1);
    border-color: rgba(245, 197, 24, 0.3);
    transform: translateY(-4px);
}

.company-item-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.company-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.company-item p {
    font-size: 0.9rem;
    color: #a8a8a8;
    margin-bottom: 12px;
}

.company-item a {
    color: #F5C518;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.company-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .companies {
        padding: 80px 20px;
    }

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

    .company-mock {
        display: none;
    }
}

/* Shiloh Section */
.shiloh {
    padding: 120px 40px;
    background: linear-gradient(180deg, transparent, rgba(245, 197, 24, 0.03));
}

.shiloh-content {
    max-width: 900px;
    margin-bottom: 60px;
}

.shiloh-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.shiloh-card {
    padding: 40px;
    text-align: center;
}

.shiloh-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #F5C518;
}

.shiloh-card p {
    font-size: 0.95rem;
    color: #a8a8a8;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .shiloh {
        padding: 80px 20px;
    }

    .shiloh-features {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about {
    padding: 120px 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F5C518;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 20px;
    color: #a8a8a8;
    font-weight: 300;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.tag {
    padding: 10px 20px;
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.2);
    border-radius: 24px;
    font-size: 0.85rem;
    color: #F5C518;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.1), rgba(184, 110, 10, 0.1));
    backdrop-filter: blur(32px) saturate(200%) brightness(1.08);
    border: 2px solid rgba(245, 197, 24, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(245, 197, 24, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(245, 197, 24, 0.1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.about-img-wrapper {
    display: grid;
    gap: 24px;
}

.about-img-secondary {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(245, 197, 24, 0.3);
    box-shadow: 0 8px 32px rgba(245, 197, 24, 0.1);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@media (max-width: 768px) {
    .about {
        padding: 80px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

/* Speaking Section */
.speaking {
    padding: 120px 40px;
}

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

.speaking-card {
    padding: 40px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.speaking-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #F5C518;
}

.speaking-card p {
    font-size: 0.95rem;
    color: #a8a8a8;
    flex-grow: 1;
    margin-bottom: 24px;
}

.speaking-cta {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .speaking {
        padding: 80px 20px;
    }

    .speaking-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-final {
    padding: 120px 40px;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 60px 40px;
    border: 2px solid rgba(245, 197, 24, 0.3);
    border-radius: 24px;
    background: rgba(245, 197, 24, 0.05);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.5), transparent);
    animation: shine 3s infinite;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.1rem;
    color: #a8a8a8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-final {
        padding: 80px 20px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-logo span {
    background: linear-gradient(135deg, #F5C518 0%, #b86e0a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.footer-links a {
    color: #a8a8a8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F5C518;
}

.footer-right {
    text-align: right;
    font-size: 0.9rem;
    color: #a8a8a8;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 12px;
}

.footer-social a {
    color: #a8a8a8;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #F5C518;
    border-color: rgba(245, 197, 24, 0.3);
    background: rgba(245, 197, 24, 0.1);
}

@media (max-width: 768px) {
    footer {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

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

    .footer-social {
        justify-content: center;
    }
}


/* Logo styles for flywheel and companies */
.flywheel-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 12px;
    max-width: 100%;
}

.company-logo {
    height: 70px;
    width: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.company-name-with-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 6px;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Divider */
.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #F5C518, transparent);
    margin: 30px 0;
}

/* ===== Work With Brian Page ===== */

/* Page Header */
.page-header {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 160px 40px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 24px;
}

.page-header p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin-bottom: 8px;
}

.back-link:hover {
    color: #F5C518;
}

/* Service Cards */
.services-section {
    padding: 40px 0 100px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-header {
        padding: 140px 20px 60px;
    }
}

.service-card {
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    flex-shrink: 0;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.service-card p {
    color: #aaa;
    margin-bottom: 24px;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
    width: 100%;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #ccc;
    font-weight: 400;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #F5C518;
    font-weight: 700;
    flex-shrink: 0;
}

/* Contact Section */
.contact-section {
    padding: 0 0 120px;
}

.contact-box {
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.contact-box > p {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 48px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-box {
        padding: 40px 24px;
    }
}

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

.contact-method-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
}

.contact-method h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-method a {
    color: #F5C518;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: opacity 0.3s ease;
}

.contact-method a:hover {
    opacity: 0.8;
}

.contact-method .contact-name {
    color: #888;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 4px;
}
