/* ============================================================
   Free. — New Brand CSS
   Dark Theme: #0d0d0d bg, #00e5c9 accent (teal)
   Font: Inter (loaded via _Layout.cshtml)
   Scope: body.free-landing scopes landing-only overrides
   ============================================================ */

/* ---- GLOBAL BODY ---- */
body.free-landing {
    background-color: #0d0d0d;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

/* ---- NAVBAR ---- */
body.free-landing .site-header {
    background: transparent !important;
    box-shadow: none !important;
}
body.free-landing .navbar.transparent-bg {
    background-color: rgba(13, 13, 13, 0.82) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}
body.free-landing .navbar.fixedmenu {
    background-color: rgba(13, 13, 13, 0.97) !important;
}
body.free-landing .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.875rem !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
    transition: color 0.2s !important;
}
body.free-landing .navbar-nav .nav-link:hover,
body.free-landing .navbar-nav .nav-link:focus {
    color: #ffffff !important;
}
body.free-landing .navbar-nav .nav-link::before {
    display: none !important;
}
body.free-landing .sidemenu_btn > span {
    background-color: #ffffff !important;
}
body.free-landing .side-menu {
    background-color: #111111 !important;
}

/* Logo — fix base theme's width:90px / width:100% stretch */
body.free-landing .navbar-brand {
    width: auto !important;
    margin: 10px 0 !important;
}
body.free-landing .navbar-brand img {
    width: auto !important;
    height: 44px !important;
    max-height: 44px !important;
    object-fit: contain !important;
}

/* Navbar CTA buttons */
.nav-btn-login {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.875rem !important;
    font-family: 'Inter', sans-serif !important;
    background: none;
    border: none;
    padding: 8px 14px !important;
}
.nav-btn-login:hover {
    color: #ffffff !important;
}
.nav-btn-join {
    background: #00e5c9 !important;
    color: #0d0d0d !important;
    border-radius: 50px !important;
    padding: 9px 22px !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    font-family: 'Inter', sans-serif !important;
    text-decoration: none !important;
    display: inline-block;
    transition: background 0.2s !important;
    border: none !important;
}
.nav-btn-join:hover {
    background: #00c4ad !important;
    color: #0d0d0d !important;
    text-decoration: none !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.free-hero {
    min-height: 100vh;
    background: linear-gradient(145deg, #080808 0%, #0f1a18 100%);
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
}
.free-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: 0;
    width: 55%;
    height: 120%;
    background: radial-gradient(ellipse at 80% 40%, rgba(0, 229, 201, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.free-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}
.free-hero h1 .accent {
    color: #00e5c9;
    display: block;
}
.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.75;
    margin-bottom: 2.2rem;
    max-width: 440px;
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
}
.btn-hero-primary {
    background: #00e5c9;
    color: #0d0d0d;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: -0.2px;
}
.btn-hero-primary:hover {
    background: #00c4ad;
    color: #0d0d0d;
    text-decoration: none;
    transform: translateY(-1px);
}
.btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}
.btn-hero-secondary:hover {
    border-color: #00e5c9;
    color: #00e5c9;
    text-decoration: none;
}

/* Social proof row */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-avatars {
    display: flex;
}
.hero-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #0d0d0d;
    margin-left: -10px;
    object-fit: cover;
    flex-shrink: 0;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-social-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.5;
}
.hero-social-text strong {
    color: #00e5c9;
    font-weight: 700;
}

/* Hero image + floating cards */
.hero-image-wrapper {
    position: relative;
    display: inline-block;
}
.hero-img {
    width: 100%;
    max-width: 430px;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    display: block;
    filter: brightness(0.85) saturate(0.9);
    position: relative;
    z-index: 1;
}
.hero-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 16px 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
    z-index: 10;
}
.hero-card-campaign {
    top: 24px;
    left: -60px;
    min-width: 210px;
}
.hero-card-match {
    bottom: 36px;
    right: -24px;
    min-width: 260px;
}
.hcard-eyebrow {
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}
.hcard-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
    line-height: 1.4;
}
.hcard-budget {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}
.hcard-link {
    font-size: 0.73rem;
    color: #00e5c9;
    font-weight: 600;
    text-decoration: none;
}
.match-found-label {
    font-size: 0.7rem;
    color: #00e5c9;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.match-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.match-check {
    width: 24px;
    height: 24px;
    background: #00e5c9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 900;
    color: #0d0d0d;
    flex-shrink: 0;
    margin-left: auto;
}
.match-name {
    font-size: 0.86rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}
.match-role {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.42);
    margin: 0;
}
.match-stats {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.match-stat {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}
.match-stat-icon { margin-right: 3px; }

/* ============================================================
   BRANDS STRIP
   ============================================================ */
.free-brands {
    padding: 50px 0;
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}
.brands-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
}
.brands-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
}
.brand-logo-item {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
}
.brand-logo-item.brand-title-case { text-transform: none; }
.brand-logo-item:hover { color: rgba(255, 255, 255, 0.65); }

/* ============================================================
   STATS
   ============================================================ */
.free-stats {
    padding: 90px 0;
    background: #0d0d0d;
}
.stats-box {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 56px 48px;
}
.stat-item { text-align: center; }
.stat-icon-wrap {
    font-size: 1.7rem;
    color: #00e5c9;
    margin-bottom: 18px;
}
.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #00e5c9;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1.5px;
}
.stat-label {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}
.stat-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.free-how {
    padding: 100px 0;
    background: #0d0d0d;
}
.section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 3px;
    color: #00e5c9;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
    display: block;
}
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: -0.8px;
}
.how-step { text-align: center; }
.step-icon-wrap {
    width: 72px;
    height: 72px;
    background: #00e5c9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.4rem;
    color: #0d0d0d;
    transition: transform 0.2s;
}
.how-step:hover .step-icon-wrap {
    transform: scale(1.06);
}
.step-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}
.step-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    max-width: 200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

/* ============================================================
   BRAND OR CREATOR
   ============================================================ */
.free-choice {
    padding: 100px 0;
    background: #0d0d0d;
}
.choice-intro {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.choice-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #00e5c9;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
}
.choice-heading {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.choice-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}
.choice-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 38px 32px;
    height: 100%;
    transition: border-color 0.2s, background 0.2s;
}
.choice-card:hover {
    border-color: rgba(0, 229, 201, 0.35);
    background: #131d1c;
}
.choice-card-icon {
    font-size: 1.55rem;
    color: #00e5c9;
    margin-bottom: 18px;
}
.choice-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}
.choice-card-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}
.btn-choice {
    background: #00e5c9;
    color: #0d0d0d;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.87rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}
.btn-choice:hover {
    background: #00c4ad;
    color: #0d0d0d;
    text-decoration: none;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.free-testimonials {
    padding: 100px 0;
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}
.testimonials-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 3px;
    color: #00e5c9;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}
.testimonials-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 22px;
}
.testimonials-link {
    color: #00e5c9;
    font-size: 0.86rem;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}
.testimonials-link:hover {
    color: #00c4ad;
    text-decoration: none;
}
.creator-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    transition: border-color 0.2s;
}
.creator-card:hover {
    border-color: rgba(0,229,201,0.2);
}
.creator-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.creator-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.creator-name {
    font-weight: 700;
    font-size: 0.93rem;
    color: #ffffff;
    margin: 0 0 2px;
    font-family: 'Inter', sans-serif;
}
.creator-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    font-family: 'Inter', sans-serif;
}
.creator-quote {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.68;
    margin-bottom: 20px;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}
.creator-stats {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.creator-stat-val {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}
.creator-stat-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.38);
    font-family: 'Inter', sans-serif;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.free-cta {
    padding: 100px 0;
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}
.cta-heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    margin-bottom: 0;
    letter-spacing: -1px;
}
.cta-heading .accent {
    color: #00e5c9;
    font-style: italic;
}
.btn-cta-primary {
    background: #00e5c9;
    color: #0d0d0d;
    border: none;
    border-radius: 50px;
    padding: 18px 38px;
    font-weight: 700;
    font-size: 0.97rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: -0.2px;
}
.btn-cta-primary:hover {
    background: #00c4ad;
    color: #0d0d0d;
    text-decoration: none;
    transform: translateY(-1px);
}
.cta-cancel {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}
.cta-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.79rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
}
.trust-badge i {
    color: #00e5c9;
    font-size: 0.85rem;
}

/* ============================================================
   FOOTER — simplified one-liner bar (all pages)
   ============================================================ */
.free-footer-bar {
    background-color: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    padding: 18px 16px;
}
.free-footer-bar p,
.free-footer-bar p a {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35) !important;
    margin: 0;
}
.free-footer-bar p a:hover {
    color: #00e5c9 !important;
    text-decoration: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .free-hero { padding: 110px 0 60px; }
    .hero-img { max-width: 100%; height: 380px; }
    .hero-image-wrapper { margin-top: 48px; display: block; }
    .hero-card-campaign { left: 0; top: 12px; }
    .hero-card-match { right: 0; bottom: 16px; min-width: 220px; }
    .stats-box { padding: 40px 24px; }
    .stat-divider {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.06);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .choice-intro { margin-bottom: 20px; }
    .cta-heading { margin-bottom: 36px; }
}

@media (max-width: 767px) {
    .free-hero h1 { font-size: 2.1rem; }
    .stat-number { font-size: 2.2rem; }
    .brands-logos { gap: 20px; }
    .brand-logo-item { font-size: 0.85rem; }
    .cta-trust-badges { gap: 14px; }
    .hero-card { display: none; }
    .how-step { margin-bottom: 48px; }
    .section-title { margin-bottom: 48px; }
    .stats-box { padding: 36px 20px; }
    .stat-item { padding: 24px 0; }
}
