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

:root {
    --primary-red: rgb(254, 59, 59);
    --dark-bg: #111111;
    --darker-bg: #111111;
    --card-bg: #1a1a1a;
    --text-primary: #FFFFFF;
    --text-secondary: #a0a0a0;
    --border-color: #2a2a2a;
    --accent-bg: #111111;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/saans-trial');

body {
    font-family: 'Saans Trial', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .hero-title, .section-title, .service-title, .team-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

/* Container */
.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

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

    .nav-link {
        display: none;
    }

    .nav-cta {
        padding: 4px 4px;
        font-size: 9px;
        letter-spacing: 0px;
        white-space: normal;
        line-height: 1.1;
        flex-shrink: 0;
        margin-left: 16px;
        margin-right: 0;
        max-width: 165px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 18px;
    }

    .nav-cta.scrolled {
        font-weight: bold;
        font-size: 10px;
        border-color: rgb(255, 0, 0);
        color: rgb(255, 0, 0);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo img {
    height: 48px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.logo-red {
    position: absolute;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-white {
    opacity: 0;
    transform: rotate(20deg) scale(1.5);
}

.logo:hover .logo-red {
    opacity: 1;
    transform: rotate(20deg) scale(1.5);
}

.logo-text {
    font-family: 'Saans Trial', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 21.6px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: transparent;
    color: var(--text-primary);
    padding: 12px 28px;
    border: 2px solid var(--border-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.3px;
    transition: color 0.4s ease, border-color 0.4s ease, font-weight 0.4s ease;
    text-transform: uppercase;
    border-radius: 2px;
}

.nav-cta:hover {
    background: var(--text-primary);
    color: var(--darker-bg);
    border-color: var(--text-primary);
}

.nav-cta.scrolled {
    font-weight: bold;
    font-size: 18px;
    border-color: rgb(255, 0, 0);
    color: rgb(255, 0, 0);
}
.hero {
    padding: 180px 0 120px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse 150% 100% at 50% 0%, rgba(253, 37, 7, 0.4) 0%, rgba(253, 37, 7, 0.2) 40%, transparent 70%);
    position: relative;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.5);
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(56px, 9vw, 120px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.accent-red {
    color: var(--primary-red) !important;
}

.hero-title .accent-red {
    color: var(--primary-red) !important;
}

.hero-description {
    font-size: clamp(17px, 2vw, 22px);
    color: var(--text-secondary);
    max-width: 620px;
    line-height: 1.65;
    font-weight: 400;
}


/* Section Styling */
.section-header {
    margin-bottom: 100px;
}

.section-label {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.section-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Case Study Section */
.case-study-section {
    padding: 180px 0;
    background: var(--darker-bg);
}

.case-study-section:nth-of-type(even) {
    background: #1a1a1a;
}

.case-study-section:nth-of-type(odd) {
    background: var(--darker-bg);
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.case-study-logo {
    height: 60px;
    width: auto;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-logo:hover {
    opacity: 0.8;
}

.case-study-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-link:hover {
    opacity: 0.8;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.case-study-image {
    width: 100%;
}

.cm-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.case-study-result {
    width: 100%;
    margin-top: 80px;
}

.result-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 48px;
}

.large-text {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.55;
    color: var(--text-primary);
    margin-bottom: 80px;
    font-weight: 400;
}

.highlight {
    color: var(--text-primary);
    font-weight: 500;
    background: linear-gradient(to right, var(--primary-red) 0%, var(--primary-red) 100%);
    background-size: 100% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    padding-bottom: 2px;
}

.case-study-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
}

.case-study-metrics .metric {
    flex: 1 1 0;
    min-width: 0;
}

/* Side-by-side case study layout */
.case-study-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
}

.case-study-row .case-study-text {
    flex: 1;
    min-width: 0;
}

.case-study-row .case-study-text .large-text {
    margin-bottom: 40px;
}

.small-text {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 400;
}

.small-text + .case-study-metrics {
    border-top: none;
    padding-top: 0;
}

/* 2x2 grid metrics for side-by-side layout */
.case-study-metrics-vertical {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Instagram stats image */
.insta-stats-image {
    max-width: 340px;
    flex-shrink: 0;
}

.insta-stats-image .cm-image {
    border-radius: 12px;
}

/* Evergreen content */
.evergreen-content {
    margin-top: 40px;
    text-align: center;
}

.evergreen-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.evergreen-label {
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SVG logos for case studies */
.case-study-logo-link {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-logo-link:hover {
    opacity: 0.8;
}

svg.case-study-logo {
    height: 50px;
    width: 50px;
    color: var(--text-primary);
}

.instagram-logo {
    color: #E1306C;
}

.youtube-logo {
    color: #FF0000;
}

.case-study-avatar {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 12px;
    font-weight: 400;
}

.metric-value {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.metric-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--text-secondary);
}

.metric-label {
    font-size: 15px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .case-study-metrics {
        flex-direction: column;
        gap: 32px;
    }

    .insta-stats-image {
        max-width: 100%;
    }

    .case-study-row {
        flex-direction: column;
    }
}

/* Services Section */
.services-section {
    padding: 180px 0;
    background: var(--darker-bg);
}

.services-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.service-nav-btn {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--text-primary);
    background: transparent;
    color: var(--text-primary);
    font-size: 48px;
    font-weight: 300;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
}

.service-nav-btn:hover:not(:disabled) {
    background: var(--text-primary);
    color: var(--darker-bg);
    transform: scale(1.1);
}

.service-nav-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    border-color: var(--text-secondary);
    color: var(--text-secondary);
}

.services-container {
    position: relative;
    min-height: 480px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

.services-section .container-wide {
    max-width: 1280px;
}

.service-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 480px;
    background: #fd2507;
    padding: 48px 48px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.service-card .service-number {
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 300;
    color: #000000;
    line-height: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    align-self: flex-start;
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0);
    position: absolute;
    top: 48px;
    right: 48px;
    margin: 0;
}

.service-card .service-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card .service-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--darker-bg);
}

.service-card .service-description {
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.6;
    color: var(--darker-bg);
    font-weight: 400;
    max-width: 600px;
}

@media (max-width: 1024px) {
    .services-wrapper {
        gap: 20px;
    }

    .service-nav-btn {
        width: 60px;
        height: 60px;
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .services-wrapper {
        flex-direction: column;
        gap: 0;
        overflow: visible;
    }

    .service-nav-btn {
        display: none !important;
    }

    .services-container {
        position: relative;
        min-height: auto;
        height: auto;
        order: 1;
        display: flex;
        flex-direction: row;
        overflow-x: scroll;
        overflow-y: hidden;
        gap: 16px;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 24px;
        margin: 0 -24px;
        width: calc(100% + 48px);
        flex: none;
    }
    
    .services-container::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        position: static !important;
        flex: 0 0 85vw;
        min-width: 85vw;
        max-width: 85vw;
        padding: 32px 28px;
        height: auto;
        min-height: 480px;
        opacity: 1 !important;
        visibility: visible !important;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        transition: none;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto 1fr;
        gap: 24px;
        grid-template-areas: 
            "number icon"
            "content content";
    }
    
    .service-card .service-number {
        font-size: 56px;
        margin: 0;
        grid-area: number;
        align-self: start;
    }
    
    .service-card .service-icon {
        width: 56px;
        height: 56px;
        margin: 0;
        position: static !important;
        top: auto !important;
        right: auto !important;
        grid-area: icon;
        justify-self: end;
        align-self: start;
    }
    
    .service-card .service-content {
        gap: 20px;
        display: flex;
        flex-direction: column;
        grid-area: content;
    }
    
    .service-card .service-title {
        font-size: 28px;
        margin: 0;
        line-height: 1.2;
    }
    
    .service-card .service-description {
        font-size: 15px;
        line-height: 1.6;
        margin: 0;
    }

    .service-card.active {
        position: static !important;
    }

    .prev-btn,
    .next-btn {
        display: none !important;
    }
}

/* Team Section */
.team-section {
    padding: 180px 0;
    background: var(--accent-bg);
}

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

.team-member {
    text-align: center;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    transform: translateY(-8px);
}

.team-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    border-radius: 8px;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .team-image {
    filter: grayscale(0%);
}

.team-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.team-name {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.linkedin-link:hover {
    transform: translateY(-2px);
}

.linkedin-icon {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.linkedin-link:hover .linkedin-icon {
    color: #0077b5;
}

.team-role {
    font-size: 17px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

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

/* CTA Section */
.cta-section {
    padding: 220px 0;
    text-align: center;
    background: #e8f1e8;
}

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

.cta-title {
    font-size: clamp(52px, 8vw, 100px);
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--darker-bg);
}

.cta-subtitle {
    font-size: clamp(17px, 2vw, 21px);
    color: #666666;
    margin-bottom: 64px;
    line-height: 1.6;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--darker-bg);
    color: var(--text-primary);
    padding: 20px 44px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid var(--darker-bg);
    text-transform: uppercase;
    border-radius: 2px;
}

.cta-button:hover {
    background: transparent;
    color: var(--darker-bg);
    border-color: var(--darker-bg);
}

.cta-button:hover .button-arrow {
    transform: translateX(6px);
}

.button-arrow {
    font-size: 20px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Footer */
.footer {
    padding: 120px 0 120px;
    background: #e8f1e8;
}

.footer .container-wide {
    border-top: 1px solid #000000;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 0;
    filter: invert(1) brightness(0);
    transition: filter 0.3s ease;
    cursor: pointer;
}

.footer-logo-link {
    display: inline-block;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.footer-logo-link:hover .footer-logo,
.footer-logo-link.active .footer-logo {
    filter: hue-rotate(0deg) brightness(1);
    animation: colorCycle 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes colorCycle {
    0% { filter: hue-rotate(0deg) brightness(1.2); }
    8% { filter: hue-rotate(30deg) brightness(1.1); }
    16% { filter: hue-rotate(60deg) brightness(1.2); }
    24% { filter: hue-rotate(90deg) brightness(1.1); }
    32% { filter: hue-rotate(120deg) brightness(1.2); }
    40% { filter: hue-rotate(150deg) brightness(1.1); }
    48% { filter: hue-rotate(180deg) brightness(1.2); }
    56% { filter: hue-rotate(210deg) brightness(1.1); }
    64% { filter: hue-rotate(240deg) brightness(1.2); }
    72% { filter: hue-rotate(270deg) brightness(1.1); }
    80% { filter: hue-rotate(300deg) brightness(1.2); }
    88% { filter: hue-rotate(330deg) brightness(1.1); }
    100% { filter: hue-rotate(360deg) brightness(1.2); }
}

.footer-tagline {
    display: none;
}

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

.footer-legal {
    font-size: 13px;
    color: #666666;
    font-weight: 400;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

/* Mobile coaching promo */
.mobile-coaching-promo {
    display: none;
}

@media (max-width: 768px) {
    .mobile-coaching-promo {
        display: block;
        padding: 48px 0;
        background: var(--darker-bg);
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-coaching-promo p {
        font-size: 15px;
        color: var(--text-secondary);
        margin-bottom: 20px;
        font-weight: 400;
    }

    .mobile-coaching-promo a {
        display: inline-block;
        padding: 14px 32px;
        border: 2px solid var(--border-color);
        color: var(--text-primary);
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        border-radius: 2px;
        transition: all 0.25s ease;
    }

    .mobile-coaching-promo a:hover {
        border-color: var(--primary-red);
        color: var(--primary-red);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-red);
    color: white;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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