/* ============================================================
   Influsway Landing Page — Base Styles (shared by .com and .ae)
   Source of truth: Figma export (influsway-com.css, influsway-ae.css)
   ============================================================ */

/* ===== Design tokens ===== */
:root {
    --color-pink: #FC4778;
    --color-blue: #3952F5;
    --color-purple-1: #5C51DF;
    --color-purple-2: #3A52EB;
    --color-text: #212529;
    --color-text-2: #2D2D2D;
    --color-text-3: #1E2529;
    --color-muted: #6D6D6D;
    --color-muted-2: #6C757D;
    --color-bg-page: #FFFFFF;
    --color-bg-soft: #F9F9F9;
    --color-bg-soft-2: #F7F7F7;
    --color-bg-soft-3: #F5F6F8;
    --color-success: #00C950;
    --color-blue-info: #007BFF;
    --color-tan: #F0E2CB;

    --gradient-brand: linear-gradient(98.13deg, #FC4778 16.65%, #3952F5 82.18%);
    --gradient-brand-soft: linear-gradient(95.62deg, rgba(252, 71, 120, 0.4) 5.63%, rgba(57, 82, 245, 0.4) 83.51%), #FFFFFF;
    --gradient-purple: linear-gradient(148.64deg, #5C51DF -2.88%, #3A52EB 84.1%);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --radius-pill: 50px;

    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.10);

    --container-max: 1280px;
}

/* ===== Reset / base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--color-bg-page);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

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

/* ===== Container helpers ===== */
.landing-container {
    width: 100%;
    max-width: var(--container-max);
    padding: 0 24px;
    margin: 0 auto;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.landing-header {
    background: #FFFFFF;
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.landing-header .landing-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 1760px;
    padding: 0 40px;
}

.landing-header .website-logo {
    flex-shrink: 0;
}

.landing-header .right-menu {
    flex-shrink: 0;
}

/* Mobile hamburger button — hidden on desktop */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #2D2D2D;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer (slide-down panel below header) */
.mobile-drawer {
    overflow: hidden;
    max-height: 0;
    background: #FFFFFF;
    border-top: 1px solid transparent;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0);
    transition: max-height 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.mobile-drawer[data-open="true"] {
    max-height: 480px;
    border-top-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.mobile-drawer-inner {
    padding: 16px;
}

/* Backdrop overlay covering page below header */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
    z-index: 999;
}

.mobile-drawer-overlay[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer-search {
    margin-bottom: 12px;
    position: relative;
}

.mobile-drawer-search input {
    width: 100%;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.11);
    border-radius: 12px;
    padding: 10px 44px 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.mobile-drawer-search .btn {
    position: absolute;
    right: 12px;
    top: 8px;
    width: 28px;
    height: 28px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-drawer-search .btn i {
    background: linear-gradient(107.14deg, #FC4778 16.65%, #3952F5 82.18%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.mobile-drawer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-drawer-list a {
    display: block;
    padding: 12px 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2D2D2D;
    border-radius: 8px;
    text-decoration: none;
}

.mobile-drawer-list a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #FC4778;
}

.landing-header .website-logo img {
    height: 71px;
    width: auto;
}

.landing-header .header-right {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-shrink: 0;
}

/* ---- Search box ---- */
.landing-header .search-box {
    width: 500px;
    position: relative;
    flex-shrink: 0;
}

.landing-header .search-box .form-control {
    box-sizing: border-box;
    width: 100%;
    height: 46px;
    border: 1px solid rgba(0, 0, 0, 0.11);
    border-radius: 16px;
    padding: 10px 50px 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: #FFFFFF;
    box-shadow: none;
    transition: border-color 0.2s;
}

.landing-header .search-box .form-control:focus {
    border-color: rgba(252, 71, 120, 0.4);
    background: #fff;
    outline: none;
    box-shadow: none;
}

.landing-header .search-box .btn {
    position: absolute;
    right: 20px;
    top: 9px;
    width: 20px;
    height: 24px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-header .search-box .btn i {
    font-size: 18px;
    background: linear-gradient(107.14deg, #FC4778 16.65%, #3952F5 82.18%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ---- Right menu ---- */
.landing-header .right-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}

.landing-header .right-menu li {
    white-space: nowrap;
}

.landing-header .right-menu a {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-2);
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    white-space: nowrap;
    transition: color 0.2s;
}

.landing-header .right-menu a:hover {
    color: var(--color-pink);
}

.landing-header .right-menu .default-button {
    display: inline-block;
    box-sizing: border-box;
    border: 1px solid #5150E5;
    border-radius: 16px;
    padding: 10px 34px 11px;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    color: var(--color-text-2);
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.landing-header .right-menu .default-button:hover {
    background: #5150E5;
    color: #fff;
    border-color: #5150E5;
}

/* ============================================================
   HERO  (Figma: 1920×817, padding 0, gap 90, justify-content: center)
   ============================================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    height: 817px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 90px;
}

/* Container wrapper inside hero is intentionally bypassed —
   layout lives on .hero-section so it can match Figma's 1920px frame */
.hero-section .landing-container {
    display: contents;
}

.hero-img-col {
    flex: 0 0 auto;
    width: 714px;
    max-width: 45vw;
    height: 100%;
    align-self: flex-end;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
}

.hero-img-col img {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 848px;
    object-fit: contain;
    object-position: bottom;
}

.hero-text-col {
    flex: 0 0 auto;
    width: 750px;
    max-width: 45vw;
    min-width: 0;
    align-self: center;
}

.hero-text-col h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 53px;
    color: var(--color-text-2);
    margin-bottom: 20px;
    max-width: 750px;
}

.hero-text-col p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    color: var(--color-muted);
    max-width: 700px;
    margin-bottom: 31px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 31px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-brands,
.btn-creators {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18.5px 52px 18.88px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn-brands {
    background: linear-gradient(98.78deg, #FC4778 16.65%, #3952F5 82.18%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(57, 82, 245, 0.18);
}

.btn-brands:hover {
    color: #fff;
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(57, 82, 245, 0.25);
}

.btn-creators {
    background: transparent;
    color: var(--color-text-2);
    border: 1px solid #7D4EC9;
}

.btn-creators:hover {
    background: #7D4EC9;
    color: #fff;
    border-color: #7D4EC9;
    transform: translateY(-1px);
}

.btn-explore-more {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18.5px 30px 18.88px;
    border-radius: 16px;
    background: linear-gradient(104.32deg, #FC4778 16.65%, #3952F5 82.18%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-explore-more:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(57, 82, 245, 0.25);
}

.btn-explore-more .arrow-icon {
    width: 24px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
}

.btn-explore-more .arrow-icon img {
    height: 15px;
    width: 14px;
}

/* ============================================================
   EXPLORE SECTION (Figma: 1280px container, 4-col grid, gap 0,
   each card 290×84 inside 320px slot, bg #F5F6F8 + drop-shadow)
   ============================================================ */
.explore-section {
    padding: 137px 0 121px;
    background: #fff;
    text-align: center;
}

.explore-section .landing-container {
    max-width: var(--container-max);
}

.explore-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: var(--color-text-2);
    margin: 0 0 24px;
}

.explore-section .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-muted);
    margin: 0 0 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 290px);
    justify-content: center;
    column-gap: 30px;
    row-gap: 28px;
    max-width: var(--container-max);
    margin: 0 auto 40px;
    padding: 0 15px;
}

.category-card {
    box-sizing: border-box;
    width: 290px;
    height: 84px;
    background: #F5F6F8;
    border: none;
    border-radius: 16px;
    padding: 20px 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-2);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    position: relative;
    cursor: pointer;
}

.category-card:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.12), 0px 3px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    color: var(--color-text-2);
}

.category-card .card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 8px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #F0E2CB;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

/* Hide the inline <img> — we use background-image instead to keep SVG patterns clipped */
.category-card .card-icon img {
    display: none;
}

.category-card > span {
    flex: 1;
    text-align: left;
}

.category-card.has-arrow {
    justify-content: space-between;
}

.category-card.has-arrow > div {
    flex: 1;
}

.category-card .arrow-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
}

.category-card .arrow-icon img {
    height: 15px;
    width: 14px;
}

/* ============================================================
   MARKETPLACE
   ============================================================ */
.market-place-section {
    min-height: 592px;
    padding: 80px 0;
    color: #fff;
    background:
        linear-gradient(95.62deg, rgba(252, 71, 120, 0.55) 5.63%, rgba(57, 82, 245, 0.55) 83.51%),
        #FFFFFF;
    display: flex;
    align-items: center;
}

.market-place-section .row {
    align-items: center;
}

.market-place-section .left-img {
    position: relative;
    display: flex;
    justify-content: center;
}

.market-place-section .left-img img {
    width: 533px;
    max-width: 100%;
    height: auto;
}

.marketplace-badge {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00C950;
    padding: 4px 10px;
    color: #fff;
    font-weight: 400;
    font-size: 10px;
    line-height: 13px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 8px 12px -2px rgba(0,0,0,0.1), 0 3px 5px -3px rgba(0,0,0,0.1);
}

.marketplace-badge svg {
    width: 11px;
    height: 11px;
}

.market-text-block {
    color: #fff;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.market-text-block h1,
.market-text-block p {
    margin: 0;
}

.market-text-block h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 24px;
}

.market-text-block p {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 32px;
    max-width: 480px;
}

.store-logo {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 6px;
}

.store-logo a {
    display: inline-block;
}

.store-logo img {
    width: 245px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
}

/* ============================================================
   STEPS
   ============================================================ */
.step-section {
    padding: 140px 0 116px;
    background: #F9F9F9;
}

.step-section .landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.step-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.step-title h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #212529;
    margin: 0;
}

.step-title p {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    color: #6D6D6D;
    margin: 0;
}

.step-tab {
    width: 415px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    background: #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    padding: 10px;
    border-radius: 16px;
    gap: 0;
}

.step-tab .btn {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    padding: 8px 24px;
    border-radius: 16px;
    border: none;
    background: transparent;
    color: #000;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.step-tab .btn.is-active {
    background: #007BFF;
    color: #fff;
}

.step-cards-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    justify-items: center;
}

.step-cards-row::before {
    content: '';
    position: absolute;
    top: 127px;
    left: 56px;
    right: 56px;
    border-top: 1px dashed rgba(33, 37, 41, 0.2);
    z-index: 0;
}

.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    width: 315px;
    height: 245px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.08), 0px 2px 4px rgba(0, 0, 0, 0.08);
}

.step-card-img {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 21px rgba(0, 0, 0, 0.07);
    border-radius: 50%;
}

.step-card-img img {
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
}

.step-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 8px;
}

.step-card p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(33, 37, 41, 0.75);
    margin: 0;
    max-width: 280px;
}

/* ============================================================
   FIND INFLUENCE / FIND WORK
   ============================================================ */
.find-influence-section {
    padding: 100px 0;
    background: #fff;
}

.find-influence-section .row {
    display: flex;
    justify-content: center;
    gap: 60px;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.find-influence-section .row > [class*="col-"] {
    flex: 0 0 auto;
    width: auto;
    max-width: 428px;
    padding: 0;
}

.section-card {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.08), 0px 2px 4px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    width: 100%;
    max-width: 428px;
    height: 499px;
    margin: 0 auto;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.section-card .image-card {
    width: 100%;
    overflow: hidden;
}

.section-card .image-card img {
    width: 100%;
    height: 214px;
    object-fit: cover;
    display: block;
}

.section-content {
    padding: 45px 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    flex: 1;
}

.find-transparent-btn {
    border: 0.7px solid rgba(0, 0, 0, 0.33);
    background: rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #2D2D2D;
    padding: 6.7px 10px 7px;
    border-radius: 16px;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
}

.find-transparent-btn:hover {
    background: #2D2D2D;
    color: #fff;
}

.section-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 34px;
    color: #2D2D2D;
    margin: 0;
}

.section-content p {
    width: 306px;
    max-width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(45, 45, 45, 0.9);
    margin: 0 auto;
}

.section-content .btn-explore-more {
    margin-top: 16px;
    padding: 11.5px 30px;
    font-size: 18px;
    line-height: 24px;
    background: linear-gradient(106.54deg, #FC4778 16.65%, #3952F5 82.18%);
}

/* ============================================================
   COMMUNITY
   ============================================================ */
.community-section {
    padding: 100px 0 120px;
    background: #FFFFFF;
}

.comunity-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.comunity-title h2 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #2D2D2D;
    margin: 0;
}

.comunity-title p {
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    color: #6D6D6D;
    margin: 0;
}

.community-card {
    width: 100%;
    max-width: 823px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.08);
    padding: 45px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.avatar-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.avatar-stack {
    display: inline-flex;
    align-items: center;
}

.avatar-stack img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -19px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
    color: #212529;
}

.community-card-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 733px;
}

.community-card-title h3 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 56px;
    color: #212529;
    margin: 0;
}

.community-card-title p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #2F333A;
    margin: 0;
    max-width: 100%;
}

.community-card-title .btn-explore-more {
    margin-top: 16px;
    background: linear-gradient(98.13deg, #FC4778 16.65%, #3952F5 82.18%);
    border: 1px solid #FFFFFF;
    padding: 18.5px 22px;
    font-size: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.landing-footer {
    background: #1E2529;
    color: #fff;
    padding: 102px 0 0;
}

.landing-footer > .landing-container {
    max-width: 1600px;
    padding: 40px 25px 30px;
    border-radius: 12px;
}

.landing-footer .footer-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr 1.2fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 333px;
}

.footer-socials {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #fff;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    color: #fff;
    transition: opacity 0.2s;
}

.footer-socials a:hover {
    opacity: 0.7;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.landing-footer h5 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: #FFFFFF;
    margin: 0 0 16px;
}

.landing-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.landing-footer li {
    margin: 0;
}

.landing-footer a {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 24px;
    transition: color 0.2s;
}

.landing-footer a:hover {
    color: #fff;
}

.footer-app {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-app img {
    width: 160px;
    height: auto;
    display: block;
    border-radius: 12px;
}

.landing-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 17px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.landing-footer .footer-bottom .landing-container {
    padding: 0 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }

    .category-card {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .hero-text-col h1,
    .explore-section h2,
    .market-text-block h1,
    .step-title h1,
    .comunity-title h2 {
        font-size: 40px;
        line-height: 1.15;
    }
}

@media (max-width: 1199px) {
    .hero-section {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        flex-direction: column-reverse;
        gap: 24px;
        height: auto;
        min-height: auto;
        padding: 40px 24px;
        text-align: center;
    }

    .hero-img-col,
    .hero-text-col {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        height: auto;
        align-self: auto;
    }

    .hero-img-col img {
        height: auto;
        max-height: none;
    }

    .hero-text-col h1,
    .hero-text-col p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }

    .step-cards-row {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .landing-footer .footer-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1399px) {
    .landing-header .header-right {
        gap: 40px;
    }

    .landing-header .search-box {
        width: 380px;
    }
}

@media (max-width: 1199px) {
    .landing-header .header-right {
        gap: 24px;
    }

    .landing-header .right-menu ul {
        gap: 24px;
    }

    .landing-header .search-box {
        width: 280px;
    }
}

@media (max-width: 991px) {
    .landing-header .header-right {
        gap: 16px;
    }

    .landing-header .right-menu ul {
        gap: 16px;
    }

    .landing-header .search-box {
        width: 200px;
    }

    .landing-header .right-menu .default-button {
        padding: 8px 20px;
    }
}

@media (max-width: 991px) {
    .landing-header {
        padding: 16px 0;
    }

    .landing-header .landing-container {
        flex-wrap: nowrap;
        gap: 12px;
        padding: 0 16px;
        justify-content: space-between;
        align-items: center;
    }

    .landing-header .search-box,
    .landing-header .right-menu li:not(:last-child) {
        display: none !important;
    }

    .landing-header .website-logo img {
        height: 44px;
    }

    .landing-header .header-right {
        flex-wrap: nowrap;
        gap: 12px;
        width: auto;
    }

    .landing-header .right-menu ul {
        gap: 14px;
    }

    .landing-header .right-menu .default-button {
        padding: 8px 18px;
        font-size: 14px;
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .hero-text-col h1,
    .explore-section h2,
    .market-text-block h1,
    .step-title h1,
    .comunity-title h2 {
        font-size: 32px;
    }

    .hero-text-col p,
    .explore-section .subtitle,
    .step-title p,
    .comunity-title p {
        font-size: 16px;
    }

    .market-text-block p,
    .section-content p {
        font-size: 15px;
    }

    .btn-brands,
    .btn-creators {
        padding: 0 32px;
        font-size: 15px;
        height: 44px;
    }

    .step-section,
    .find-influence-section,
    .community-section,
    .market-place-section {
        padding: 60px 0;
    }

    .landing-footer .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   MOBILE COMPREHENSIVE FIXES (≤ 767px)
   ============================================================ */
@media (max-width: 991px) {
    /* Section paddings tightened */
    .hero-section {
        padding: 32px 16px 0;
        gap: 24px;
    }

    .explore-section {
        padding: 60px 0 60px;
    }

    /* Explore: 1-column card grid, tighter spacing */
    .categories-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 16px;
    }

    .category-card {
        width: 100%;
        min-width: 0;
    }

    /* Marketplace: center text & content on mobile */
    .market-place-section {
        min-height: auto;
        padding: 60px 16px;
        text-align: center;
    }

    .market-place-section .row {
        flex-direction: column;
        gap: 32px;
    }

    .market-place-section .col-md-5,
    .market-place-section .col-md-7 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .market-place-section .left-img img {
        width: auto;
        max-width: 100%;
    }

    .market-text-block {
        align-items: center;
        text-align: center;
    }

    .market-text-block h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .market-text-block p {
        font-size: 16px;
        line-height: 24px;
    }

    .store-logo {
        justify-content: center;
        gap: 12px;
    }

    .store-logo img {
        width: 180px;
        height: 56px;
    }

    /* Three Steps: cards full-width, hide dashed line, tabs scaled */
    .step-section {
        padding: 60px 16px;
    }

    .step-section .landing-container {
        gap: 32px;
        padding: 0;
    }

    .step-cards-row {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 360px;
    }

    .step-cards-row::before {
        display: none;
    }

    .step-card {
        width: 100%;
        max-width: 360px;
        height: auto;
        min-height: 200px;
        margin: 0 auto;
        padding: 24px 16px;
    }

    .step-tab {
        width: 100%;
        max-width: 360px;
    }

    .step-tab .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    /* Find Influence: cards full-width */
    .find-influence-section {
        padding: 60px 16px;
    }

    .find-influence-section .row {
        flex-direction: column;
        gap: 24px;
    }

    .find-influence-section .row > [class*="col-"] {
        max-width: 100%;
        width: 100%;
    }

    .section-card {
        max-width: 100%;
        height: auto;
        min-height: 460px;
    }

    .section-card .image-card img {
        height: 200px;
    }

    .section-content {
        padding: 32px 20px 0;
    }

    .section-content h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .section-content p {
        font-size: 15px;
        line-height: 22px;
    }

    /* Community card: tighter padding */
    .community-section {
        padding: 60px 16px;
    }

    .community-card {
        max-width: 100%;
        padding: 28px 20px;
        gap: 20px;
    }

    .community-card-title h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .community-card-title p {
        font-size: 15px;
        line-height: 22px;
    }

    .community-card-title .btn-explore-more {
        padding: 14px 22px;
        font-size: 16px;
        white-space: nowrap;
        max-width: 100%;
    }

    .community-card-title .btn-explore-more .arrow-icon {
        flex-shrink: 0;
    }

    .avatar-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
    }

    .avatar-stack img {
        width: 40px;
        height: 40px;
        margin-left: -14px;
    }

    .avatar-label {
        font-size: 13px;
        text-align: center;
    }

    /* Footer: brand full-width, nav cols in 2x2 grid */
    .landing-footer {
        padding: 60px 0 0;
    }

    .landing-footer > .landing-container {
        max-width: 100%;
        padding: 0 24px 30px;
    }

    .landing-footer .footer-row {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
        text-align: left;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-app {
        grid-column: 1 / -1;
    }

    .landing-footer h5 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    .landing-footer ul {
        gap: 10px;
    }

    .landing-footer a {
        font-size: 15px;
        line-height: 22px;
    }

    .footer-app img {
        width: 140px;
    }

    /* Tab pill text wrap fix */
    .step-tab .btn {
        white-space: nowrap;
    }
}

/* ============================================================
   SMALL PHONE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    .hero-text-col h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .hero-text-col p {
        font-size: 14px;
    }

    .market-text-block h1,
    .step-title h1,
    .comunity-title h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .explore-section h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .step-card h4,
    .section-content h3,
    .community-card-title h3 {
        font-size: 20px;
    }

    /* Buttons & store badges on tiny screens */
    .store-logo {
        flex-direction: column;
        align-items: center;
    }

    .store-logo img {
        width: 200px;
    }

    .step-tab .btn {
        font-size: 13px;
        padding: 6px 8px;
    }
}
