/* ==========================================================================
   PREMIUM LIGHT + DARK COMBO UI (SAFE VERSION)
   Only visual enhancement — keeps your original layout intact
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {

    --font-primary: 'Inter', 'Poppins', system-ui, sans-serif;

    --clr-brand-primary: #6C63FF;
    --clr-brand-secondary: #FFB84D;

    --clr-dark-bg: #111827;

    --clr-light-bg-prime: #ffffff;
    --clr-light-bg-sub: #f8faff;

    --clr-border-line: rgba(0, 0, 0, 0.08);

    --clr-text-main: #1f2937;
    --clr-text-muted: #6b7280;

    --max-width-limit: 1240px;

    --header-height-desktop: 80px;

    --border-radius-standard: 18px;

    --transition-smooth: all 0.35s ease;

    --premium-shadow:
        /* 0 10px 30px rgba(17, 24, 39, 0.08); */
        0 10px 40px rgba(15, 23, 42, .08);

    --premium-shadow-hover:
        /* 0 20px 50px rgba(108, 99, 255, 0.18); */
        0 30px 60px rgba(108, 99, 255, .20);
}

/* ==========================================================================
   Header Custom Brand Image Logo Sizing & Centering Rules
   ========================================================================== */
.logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 6px 0;
}

.header-logo {
    height: 52px;
    width: auto;
    object-fit: contain;

    /* 1. A single, optimized shadow that works everywhere without crashing iOS */
    -webkit-filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.45));
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.45));

    /* 2. Forces hardware acceleration to fix the Apple WebKit rendering bug */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.logo-link:hover .sub-brand-label {
    opacity: 0.9;
}

.logo-link:hover .header-logo {
    transform: scale(1.03) translateY(-1px);
    /* Smooth micro-motion interaction on hover */
}

/* ==========================================================================
      BASE
      ========================================================================== */

html {
    scroll-behavior: smooth;
}

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

body {

    font-family: var(--font-primary);

    background:
        radial-gradient(circle at top left,
            rgba(108, 99, 255, 0.08),
            transparent 25%),

        radial-gradient(circle at bottom right,
            rgba(255, 184, 77, 0.08),
            transparent 25%),

        #ffffff;

    color: var(--clr-text-main);

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-container {
    width: 100%;
    max-width: var(--max-width-limit);
    margin: 0 auto;
    padding: 0 24px;
}

.placeholder-graphic {

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.95),
            rgba(248, 250, 255, 1));

    border: 1px solid rgba(255, 255, 255, 0.9);

    border-radius: var(--border-radius-standard);

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--clr-text-muted);

    font-size: 13px;

    font-weight: 500;

    box-shadow: var(--premium-shadow);
}

section {
    scroll-margin-top: var(--header-height-desktop);
}

/* ==========================================================================
      BUTTONS
      ========================================================================== */

.cta-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-family: var(--font-primary);

    font-weight: 700;

    font-size: 14px;

    padding: 13px 28px;

    border-radius: 999px;

    cursor: pointer;

    transition: var(--transition-smooth);

    border: none;
}

.solid-cta {

    background:
        linear-gradient(135deg,
            var(--clr-brand-primary),
            #8B5CF6);

    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(108, 99, 255, 0.25);
}

.solid-cta:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(108, 99, 255, 0.35);
}

.inverted-cta {

    background:
        linear-gradient(135deg,
            var(--clr-brand-secondary),
            #ffcc73);

    color: var(--clr-dark-bg);

    box-shadow:
        0 10px 25px rgba(255, 184, 77, 0.2);
}

.inverted-cta:hover {
    transform: translateY(-3px);
}

.block-cta {
    width: 100%;
}

/* ==========================================================================
      HEADER
      ========================================================================== */

.site-header {

    width: 100%;

    height: var(--header-height-desktop);

    background: rgba(248, 250, 252, 0.95);

    border-bottom: 1px solid rgba(255, 255, 255, 0.4);

    position: fixed;

    top: 0;

    left: 0;

    z-index: 999;

    backdrop-filter: blur(18px);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-container {

    max-width: var(--max-width-limit);

    height: 100%;

    margin: 0 auto;

    padding: 0 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo-text {

    font-size: 30px;

    font-weight: 800;

    color: var(--clr-dark-bg);
}

.logo-text span {
    color: var(--clr-brand-primary);
}

.header-right-nav {

    display: flex;

    align-items: center;
}

.menu-list {

    display: flex;

    gap: 32px;
}

.nav-link {

    font-size: 15px;

    font-weight: 600;

    color: var(--clr-text-main);

    position: relative;

    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {

    color: var(--clr-brand-primary);
}

.nav-link::after {

    content: '';

    position: absolute;

    bottom: -2px;

    left: 0;

    width: 0;

    height: 2px;

    background:
        linear-gradient(90deg,
            var(--clr-brand-primary),
            var(--clr-brand-secondary));

    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;
}

.mobile-menu-trigger {

    display: none;

    flex-direction: column;

    gap: 5px;

    background: transparent;

    border: none;

    cursor: pointer;

    padding: 4px;

    margin-left: 16px;
}

.mobile-menu-trigger .bar {

    width: 22px;

    height: 2px;

    background-color: var(--clr-dark-bg);

    transition: var(--transition-smooth);
}

/* ==========================================================================
      MOBILE DRAWER
      ========================================================================== */

.mobile-drawer {

    position: fixed;

    top: 0;

    left: 0;

    width: 100vw;

    height: 100vh;

    z-index: 1000;

    visibility: hidden;

    transition: visibility 0.4s;
}

.mobile-drawer.is-active {
    visibility: visible;
}

.drawer-backdrop {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.4);

    opacity: 0;

    transition: opacity 0.4s ease;
}

.mobile-drawer.is-active .drawer-backdrop {
    opacity: 1;
}

.drawer-content {

    position: absolute;

    top: 0;

    right: -300px;

    width: 300px;

    height: 100%;

    background: #ffffff;

    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);

    padding: 24px;

    display: flex;

    flex-direction: column;

    transition: right 0.4s ease;
}

.mobile-drawer.is-active .drawer-content {
    right: 0;
}

.drawer-actions {

    display: flex;

    justify-content: flex-end;

    margin-bottom: 32px;
}

.drawer-close {

    background: transparent;

    border: none;

    font-size: 28px;

    cursor: pointer;

    color: var(--clr-text-main);
}

.mobile-nav-menu ul {

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.mobile-nav-menu a {

    font-size: 16px;

    font-weight: 600;

    display: block;

    padding: 8px 0;
}

/* ==========================================================================
      HERO
      ========================================================================== */

/* .hero-section {

    padding-top: calc(var(--header-height-desktop) + 60px);

    padding-bottom: 100px;

    background:
        linear-gradient(135deg,
            rgba(108, 99, 255, 0.05),
            rgba(255, 255, 255, 1) 40%,
            rgba(255, 184, 77, 0.05));

    position: relative;

    overflow: hidden;
} */

.hero-section {

    padding-top: calc(var(--header-height-desktop) + 60px);

    padding-bottom: 100px;

    background:
        radial-gradient(circle at top left,
            rgba(108, 99, 255, 0.12),
            transparent 35%),

        radial-gradient(circle at bottom right,
            rgba(37, 99, 235, 0.10),
            transparent 35%),

        linear-gradient(180deg,
            #ffffff 0%,
            #f8faff 100%);

    position: relative;

    overflow: hidden;
}

.hero-section::before {
    content: '';

    position: absolute;

    width: 600px;
    height: 600px;

    background: #6C63FF;

    opacity: 0.12;

    filter: blur(120px);

    top: -200px;
    left: -150px;

    border-radius: 50%;

    pointer-events: none;
}

.hero-section::after {
    content: '';

    position: absolute;

    width: 500px;
    height: 500px;

    background: #FFB84D;

    opacity: .08;

    filter: blur(120px);

    bottom: -200px;
    right: -150px;

    border-radius: 50%;

    pointer-events: none;
}

.hero-grid {

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 48px;

    align-items: center;
}

.hero-title {

    font-size: 60px;

    font-weight: 800;

    line-height: 1.08;

    color: var(--clr-dark-bg);
    font-family: 'Sora', sans-serif;

    margin-bottom: 24px;

    letter-spacing: -2px;
}

.hero-title .highlight-text {

    background:
        linear-gradient(135deg,
            var(--clr-brand-primary),
            #8B5CF6);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-subtitle {

    font-size: 17px;

    color: var(--clr-text-muted);

    margin-bottom: 36px;
}

.hero-img-frame {

    width: 100%;

    aspect-ratio: 4 / 3;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.8),
            rgba(248, 250, 255, 0.95));

    border: 1px solid rgba(255, 255, 255, 0.8);

    box-shadow:
        0 30px 60px rgba(108, 99, 255, 0.12);

    backdrop-filter: blur(20px);

    border-radius: 28px;
}

.mock-data-ui {

    width: 60%;

    padding: 20px;

    background: #ffffff;

    border-radius: 14px;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.ui-bar {

    display: block;

    height: 8px;

    background-color: #e8ebf3;

    border-radius: 4px;

    margin-bottom: 12px;
}

.ui-bar.label-bar {

    width: 40%;

    background:
        linear-gradient(90deg,
            var(--clr-brand-primary),
            var(--clr-brand-secondary));
}

.ui-bar.line-1 {
    width: 85%;
}

.ui-bar.line-2 {
    width: 70%;
    margin-bottom: 0;
}

/* ==========================================================================
      SECTION TITLES
      ========================================================================== */

.section-title,
.ticker-title {

    font-size: 42px;

    font-weight: 800;

    color: var(--clr-dark-bg);
    font-family: 'Sora', sans-serif;

    text-align: center;

    margin-bottom: 40px;
}

.accent-text {
    color: var(--clr-brand-primary);
}

/* ==========================================================================
      TICKERS
      ========================================================================== */

.milestone-ticker-section {

    padding: 60px 0;

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f8faff);

    border-top: 1px solid rgba(0, 0, 0, 0.03);

    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.influencer-scroller-bg {
    background: #ffffff;
}

.ticker-heading-wrap {

    text-align: center;

    margin-bottom: 40px;
}

.infinite-carousel-viewport {

    width: 100%;

    overflow: hidden;

    position: relative;

    padding: 10px 0;
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
}

.ticker-track-speed {
    animation: linearInfiniteScroll 28s linear infinite;
}

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

.brand-logo {
    width: auto;
    height: auto;

    max-width: 220px;
    max-height: 110px;

    object-fit: contain;
    display: block;

    transition: all .3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   INFLUENCERS (Updated Premium Layout)
   ========================================================================== */

.inf-profile {
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    text-decoration: none;
    /* Prevents the names from being underlined like standard links */
}

.inf-profile:hover {
    transform: translateY(-6px);
}

.inf-profile img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: contain;
    object-position: center;
    background: #fff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    background-color: #f1f5f9;
    margin-bottom: 12px;
}

.inf-profile span {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 4px;
    display: block;
    white-space: nowrap;
}

.inf-profile small {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 500;
    color: var(--clr-text-muted);
    background-color: #f1f5f9;
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
    white-space: nowrap;
}

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

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

/* ==========================================================================
      CASE STUDIES
      ========================================================================== */

/* .case-studies-section {

    padding: 100px 0;

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f8faff);
} */

.case-studies-section {

    padding: 100px 0;

    background:
        linear-gradient(180deg,
            #f8faff 0%,
            #ffffff 100%);
}

.slider-viewport-container {

    position: relative;

    width: 100%;

    overflow: hidden;

    padding: 20px 0;
}

.case-slider-track {

    display: flex;

    gap: 32px;

    transition: transform 0.5s ease;

    width: 100%;
}

.case-card-node {

    flex: 0 0 calc(33.333% - 21.33px);

    min-width: 300px;
}

.case-card-inner {

    /* background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.95),
            rgba(248, 250, 255, 1)); */
    background: rgba(255, 255, 255, .75);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .8);

    border-radius: 24px;

    padding: 32px;

    height: 100%;

    display: flex;

    flex-direction: column;

    box-shadow: var(--premium-shadow);

    transition: var(--transition-smooth);
}

.case-card-inner:hover {

    transform: translateY(-8px);

    box-shadow: var(--premium-shadow-hover);
}

.logo-header-box {

    width: 100%;

    height: 120px;

    margin-bottom: 24px;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            rgba(108, 99, 255, 0.12),
            rgba(255, 184, 77, 0.12));
}



.case-card-inner h3 {

    font-size: 22px;

    font-weight: 700;

    color: var(--clr-dark-bg);

    margin-bottom: 12px;
}

.excerpt-text {

    font-size: 14px;

    color: var(--clr-text-muted);

    margin-bottom: 20px;

    flex-grow: 1;
}

.read-more-popup-trigger {

    background: transparent;

    border: none;

    color: var(--clr-brand-primary);

    font-weight: 700;

    cursor: pointer;

    text-align: left;

    margin-bottom: 24px;

    width: max-content;
}

.card-counter-metrics {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    padding-top: 20px;

    border-top: 1px solid rgba(0, 0, 0, 0.05);

    text-align: center;
}

.metric-unit strong {

    display: block;

    font-size: 16px;

    font-weight: 800;

    color: var(--clr-dark-bg);
}

.metric-unit span {

    font-size: 11px;

    color: var(--clr-text-muted);

    text-transform: uppercase;
}

.slider-nav-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 44px;

    height: 44px;

    background: white;

    border: none;

    border-radius: 50%;

    z-index: 10;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);

    transition: var(--transition-smooth);
}

.slider-nav-btn:hover {

    background: var(--clr-brand-primary);

    color: white;
}

.prev-btn {
    left: 4px;
}

.next-btn {
    right: 4px;
}

/* ==========================================================================
      CTA PANEL
      ========================================================================== */

.lead-generation-anchor-panel {

    padding: 90px 0;

    background:
        linear-gradient(135deg,
            #6C63FF,
            #8B5CF6);

    color: #ffffff;

    text-align: center;
}

.panel-inner-flex {

    max-width: 900px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 24px;
}

.panel-inner-flex h2 {

    font-size: 44px;

    font-weight: 800;
}

.highlight-alt {
    color: #FFD166;
}

.panel-inner-flex p {

    font-size: 15px;

    opacity: 0.92;

    line-height: 1.7;

    max-width: 750px;
}

/* ==========================================================================
      FOOTER
      ========================================================================== */

.site-footer {

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f8faff);

    border-top: 1px solid rgba(0, 0, 0, 0.05);

    padding: 80px 0 0 0;
}

.footer-grid-system {

    display: grid;

    grid-template-columns: 1fr 1.5fr 1fr;

    gap: 48px;

    padding-bottom: 60px;
}

.footer-brand-column .brand-compliance-text {

    font-size: 13px;

    color: var(--clr-text-muted);

    margin: 20px 0;
}

.badge-box {

    width: 140px;

    height: 44px;
}

.footer-links-matrix {
    display: grid;
    /* max-content forces columns to be as wide as the longest text inside them */
    grid-template-columns: repeat(4, max-content);
    gap: 48px;
    /* Increased the gap between columns */
}

.links-column-block h4,
.footer-social-channels-column h4 {

    font-size: 14px;

    font-weight: 700;

    color: var(--clr-dark-bg);

    margin-bottom: 20px;
}

.links-column-block ul {

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.links-column-block a {

    font-size: 13.5px;

    color: var(--clr-text-main);
}

.links-column-block a:hover {

    color: var(--clr-brand-primary);
}

.social-icon-row-stack {

    display: flex;

    gap: 16px;

    margin-bottom: 24px;
}

.social-icon-row-stack a {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: white;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--clr-text-main);

    box-shadow: var(--premium-shadow);
}

.social-icon-row-stack a:hover {

    background: var(--clr-brand-primary);

    color: white;
}

.footer-copyright-strip {

    border-top: 1px solid rgba(0, 0, 0, 0.05);

    padding: 24px 0;

    font-size: 12.5px;

    color: var(--clr-text-muted);
}

/* ==========================================================================
      MODALS
      ========================================================================== */

.interactive-modal-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100vw;

    height: 100vh;

    background-color: rgba(17, 24, 39, 0.45);

    z-index: 2000;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    pointer-events: none;

    backdrop-filter: blur(6px);

    transition: opacity 0.3s ease;
}

.interactive-modal-overlay.is-open {

    opacity: 1;

    pointer-events: auto;
}

.modal-card-window {

    background: #ffffff;

    border-radius: 24px;

    width: 100%;

    max-width: 540px;

    padding: 40px;

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.12);

    position: relative;
}

.modal-window-close-action-trigger {

    position: absolute;

    top: 12px;
    right: 12px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
    line-height: 1;

    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;

    cursor: pointer;

    color: var(--clr-text-muted);

    z-index: 9999;
}

.form-input-group-element input[type="text"],
.form-input-group-element input[type="email"],
.form-input-group-element input[type="tel"] {

    width: 100%;

    height: 46px;

    border: 1px solid rgba(0, 0, 0, 0.08);

    border-radius: 10px;

    padding: 0 16px;

    font-family: var(--font-primary);

    font-size: 14px;

    outline: none;
}

.form-input-group-element input:focus {

    border-color: var(--clr-brand-primary);

    box-shadow:
        0 0 0 4px rgba(108, 99, 255, 0.12);
}

.form-input-group-element textarea {

    width: 100%;

    border: 1px solid rgba(0, 0, 0, 0.08);

    border-radius: 10px;

    padding: 14px 16px;

    font-family: var(--font-primary);

    font-size: 14px;

    resize: vertical;

    min-height: 120px;

    outline: none;
}

.form-input-group-element textarea:focus {

    border-color: var(--clr-brand-primary);

    box-shadow:
        0 0 0 4px rgba(108, 99, 255, 0.12);
}

/* ==========================================================================
      MOBILE
      ========================================================================== */

@media (max-width: 1024px) {

    .hero-title {
        font-size: 46px;
    }

    .panel-inner-flex h2 {
        font-size: 34px;
    }

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

    .footer-links-matrix {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {

    .mobile-menu-trigger {
        display: flex;
    }

    .desktop-nav-menu {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-actions {
        display: flex;
        justify-content: center;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-img-frame {
        max-width: 500px;
        margin: 0 auto;
    }

    .panel-inner-flex h2 {
        font-size: 28px;
    }

    .case-card-node {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .hero-dashboard-img {
        width: 100% !important;
        max-width: 100% !important;
        transform: scale(1) !important;
        /* Safer than 'none', forces exact actual size */
        height: auto !important;
        object-fit: contain !important;
        /* Ensures no aspect ratio stretching or cropping */
        margin: 0 auto !important;
        display: block !important;
    }

    .hero-visual-block {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        text-align: center;
    }
}

/* ==========================================================================
      X LOGO
      ========================================================================== */

.x-logo-link {

    font-family: sans-serif;

    font-size: 19px;

    font-weight: normal;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    user-select: none;
}

/* ==========================================================================
   Horizontal Brand Layout (Logo Next to Text)
   ========================================================================== */
.brand-inline-layout {
    display: flex;
    align-items: center;
    /* Aligns the logo and the text perfectly down the center line */
    justify-content: flex-start;
    gap: 12px;
    /* Clean horizontal breathing room between logo and name */
}

.brand-inline-layout .header-logo {
    height: 48px;
    /* Brings the logo back up to a crisp, premium size */
    width: auto;
    object-fit: contain;
}

.sub-brand-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.5px;
    line-height: 1;
}

.sub-brand-label {
    color: #111827;
}

.sub-brand-label .zone {
    color: #111827;
}

.sub-brand-label .media {
    color: #2563EB;
}

/* ==========================================================================
   Form Spacing & Layout Alignment Overrides
   ========================================================================== */
.form-input-group-element {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.native-custom-radio-segment-box {
    display: flex;
    gap: 24px;
    padding: 4px 0 8px;
}

#successMessage {
    animation: slideIn .3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Toast */

.success-toast {
    position: fixed;
    top: 20px;
    right: 20px;

    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;

    padding: 16px 22px;
    border-radius: 12px;

    font-size: 15px;
    font-weight: 600;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);

    z-index: 999999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);

    transition: all .35s ease;
}

.success-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================================================================
   Kofluence-Style Clean Alert Window Overlays (Popups Only)
   ========================================================================== */
.case-study-modal-overlay {
    display: none;
    /* Controlled via JS toggles */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6) !important;
    /* Dimmed glass backdrop shadow */
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.modal-content-wrapper {
    background: #ffffff !important;
    border-radius: 24px !important;
    max-width: 750px !important;
    /* Perfect sleek alert footprint */
    width: 90%;
    padding: 36px 40px !important;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.3) !important;
    border: none !important;
    position: relative;
    animation: alertPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes alertPopIn {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal-x {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 32px;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.close-modal-x:hover {
    color: #0f172a;
}

.modal-content-wrapper h2 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
    padding-right: 30px;
}

.modal-split-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Styled clean list rules from reference design context */
.modal-body-scrollable ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-body-scrollable li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
}

.modal-body-scrollable li:last-child {
    margin-bottom: 0;
}

/* Customized bullet color mark matching brand setup fields */
.modal-body-scrollable li::before {
    content: "•";
    color: #6c63ff;
    /* Brand primary theme accent color */
    font-weight: 900;
    font-size: 18px;
    position: absolute;
    left: 4px;
    top: -2px;
}

html,
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Keep same logo look on desktop, laptop, tablet and mobile */
.brand-inline-layout {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 48px !important;
    width: auto !important;
    object-fit: contain;
}

.sub-brand-label {
    font-size: 25px !important;
    line-height: 1 !important;
    white-space: nowrap;
}

/* Large tablets */
@media (max-width: 1024px) {
    .section-container {
        padding: 0 20px;
    }
}

/* Tablets */
@media (max-width: 768px) {

    .header-container {
        padding: 12px 16px;
    }

    .header-logo {
        height: 48px !important;
        width: auto !important;
        object-fit: contain;
    }

    .sub-brand-label {
        font-size: 22px !important;
    }

    .hero-title {
        font-size: clamp(32px, 7vw, 48px) !important;
    }

    .hero-grid,
    .about-grid,
    .contact-grid,
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Mobile */
@media (max-width: 480px) {

    .section-container {
        padding: 0 16px;
    }

    .brand-inline-layout {
        gap: 8px;
    }

    .header-logo {
        height: 48px !important;
        width: auto !important;
        object-fit: contain;
    }

    .sub-brand-label {
        font-size: 18px !important;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 38px) !important;
        line-height: 1.1;
    }

    .hero-actions,
    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
    }
}

/* Influencer images - stop head cropping */
.inf-profile img,
.influencer-card img,
.creator-card img {
    object-fit: contain !important;
    object-position: center center !important;
    background: #fff;
}

/* Desktop: 3 case studies visible */
.case-slider-track {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Mobile/tablet: horizontal scroll with arrows */
@media (max-width: 768px) {

    .case-studies-section .section-container {
        position: relative;
    }

    .case-slider-track {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .case-card-node {
        min-width: 85%;
        scroll-snap-align: start;
    }

    .slider-nav-btn {
        display: flex !important;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
    }

    .modal-content-wrapper {
        width: 95% !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
        padding: 20px !important;
    }

    .header-logo {
        height: 48px !important;
        width: auto !important;
    }
}

.brand-card {
    height: 120px;

    width: auto;
    min-width: 180px;
    max-width: 320px;

    padding: 15px 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.08);

    border-radius: 16px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);

    flex-shrink: 0;

    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width:768px) {

    .brand-card {
        width: auto;
        min-width: 140px;
        max-width: 180px;

        height: 80px;

        padding: 8px 12px;
    }

    .brand-logo {
        max-width: 100%;
        max-height: 70px;

        object-fit: contain;
    }

}

.tiktok-card {
    min-width: 180px !important;
    max-width: 180px !important;
}



.hero-dashboard-img {
    width: 115%;
    max-width: none;
    height: auto;
    display: block;

    transform: scale(1.12);

    filter: drop-shadow(0 25px 50px rgba(108, 99, 255, .18));
}