:root {
    --bg: #000000;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --text: #f5f5f5;
    --muted: #b0a0c8;
    --yellow: #ffd700;
    --purple: #7b61ff;
    --purple-deep: #4a1d96;
    --purple-glow: rgba(123, 97, 255, 0.45);
    --gradient-cta: linear-gradient(135deg, #7b61ff 0%, #9b4dff 45%, #ffd700 100%);
    --gradient-text: linear-gradient(135deg, #c4b5fd 0%, #ffd700 100%);
    --blue: #5bc0eb;
    --orange: #ff7f50;
    --coral: #ff6b5b;
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.08);
    --border-purple: rgba(123, 97, 255, 0.35);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

main {
    overflow-x: hidden;
}

.container {
    width: min(1140px, 92vw);
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.15;
    margin-top: 0;
    font-weight: 800;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    color: var(--muted);
}

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

/* ── Buttons ── */
.btn-yellow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-cta);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border: 0;
    border-radius: 8px;
    padding: 14px 28px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    box-shadow: 0 4px 18px var(--purple-glow);
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(123, 97, 255, 0.5), 0 4px 12px rgba(255, 215, 0, 0.25);
    filter: brightness(1.06);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--border-purple);
    color: var(--text);
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 24px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-outline:hover {
    border-color: var(--purple);
    color: #e9d5ff;
    background: rgba(123, 97, 255, 0.1);
}

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

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-purple);
}

.nav-wrap {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.06em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav > a:not(.btn-yellow) {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.main-nav > a:not(.btn-yellow):hover,
.main-nav > a.active {
    color: #d8b4fe;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* ── Sections ── */
.section {
    padding: 80px 0;
}

/* ── Hero ── */
.hero-v2 {
    padding-top: 60px;
    padding-bottom: 40px;
}

.hero-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-v2-copy h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-v2-copy h1 span {
    color: var(--purple);
}

.hero-v2-copy p {
    font-size: 1.05rem;
    max-width: 440px;
    margin-bottom: 16px;
}

.hero-badges {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
}

.hero-badges li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted);
}

.hero-badge-icon {
    font-size: 0.9rem;
    line-height: 1;
}

.hero-v2-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-orbit {
    position: relative;
    width: min(460px, 88vw);
    height: min(460px, 88vw);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-photo-wrap {
    position: relative;
    z-index: 2;
    width: 68%;
    max-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg), var(--bg)) padding-box,
        var(--gradient-cta) border-box;
    box-shadow: 0 0 40px var(--purple-glow);
}

.hero-photo-wrap img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.orbit-track {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orbit-track::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px dashed var(--border-purple);
    border-radius: 50%;
    opacity: 0.3;
    animation: orbit-spin 24s linear infinite reverse;
}

.orbit-item {
    position: absolute;
    inset: 0;
    animation: orbit-spin 20s linear infinite;
    animation-delay: calc(var(--delay) * -1s);
    pointer-events: auto;
}

.orbit-icon-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid var(--border-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px var(--purple-glow);
    animation: orbit-counter 20s linear infinite;
    animation-delay: calc(var(--delay) * -1s);
    transition: box-shadow 0.25s, filter 0.25s;
}

.orbit-item:hover .orbit-icon-wrap {
    box-shadow: 0 12px 36px rgba(123, 97, 255, 0.65);
    filter: brightness(1.15);
}

.orbit-icon-wrap img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

@keyframes orbit-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-counter {
    to {
        transform: translateX(-50%) rotate(-360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-marquee-track {
        animation: none;
    }

    .orbit-item,
    .orbit-icon-wrap,
    .orbit-track::before,
    .brand-orbit-item,
    .brand-orbit-chip {
        animation: none;
    }

    .orbit-item:nth-child(1) { transform: rotate(0deg); }
    .orbit-item:nth-child(2) { transform: rotate(120deg); }
    .orbit-item:nth-child(3) { transform: rotate(240deg); }

    .orbit-item:nth-child(1) .orbit-icon-wrap { transform: translateX(-50%) rotate(0deg); }
    .orbit-item:nth-child(2) .orbit-icon-wrap { transform: translateX(-50%) rotate(-120deg); }
    .orbit-item:nth-child(3) .orbit-icon-wrap { transform: translateX(-50%) rotate(-240deg); }

    .brand-orbit-item:nth-child(odd) { transform: rotate(0deg); }
    .brand-orbit-item:nth-child(even) { transform: rotate(180deg); }
}

/* ── Scale / Influencers ── */
.scale-section {
    text-align: center;
}

.scale-inner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 12px;
}

.scale-sub {
    max-width: 560px;
    margin: 0 auto 36px;
}

.creator-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.creator-card {
    border-radius: 16px;
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: transform 0.25s;
}

.creator-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.creator-card-link:hover {
    transform: translateY(-6px);
}

.creator-info strong {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.creator-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.creator-info {
    text-align: center;
}

.creator-info a {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.creator-info a:hover {
    text-decoration: underline;
}

.creator-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.creator-partners {
    margin: 8px 0 0;
    font-size: 0.72rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.logo-marquee {
    margin-top: 42px;
    text-align: center;
}

.logo-marquee-title {
    margin: 0 0 18px;
    font-size: 0.82rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logo-marquee-viewport {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: logo-marquee 38s linear infinite;
}

.logo-chip {
    flex-shrink: 0;
    width: 176px;
    height: 96px;
    border-radius: 14px;
    border: 1px solid var(--border-purple);
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    overflow: hidden;
}

.logo-chip-light {
    background: #f3f3f3;
}

.logo-chip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(var(--logo-scale, 1));
}

@keyframes logo-marquee {
    to {
        transform: translateX(-50%);
    }
}

.influencer-orbit-hero {
    position: relative;
    width: min(420px, 88vw);
    height: min(420px, 88vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.influencer-orbit-center {
    position: relative;
    z-index: 2;
    width: 210px;
    height: 210px;
}

.influencer-orbit-center img {
    position: absolute;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--purple);
    box-shadow: 0 8px 24px rgba(123, 97, 255, 0.35);
}

.influencer-orbit-center img:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.influencer-orbit-center img:nth-child(2) {
    bottom: 4px;
    left: 0;
}

.influencer-orbit-center img:nth-child(3) {
    bottom: 4px;
    right: 0;
}

.brand-orbit-track {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.brand-orbit-track::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed var(--border-purple);
    border-radius: 50%;
    opacity: 0.25;
}

.brand-orbit-item {
    position: absolute;
    inset: 0;
    animation: orbit-spin 22s linear infinite;
    animation-delay: calc(var(--delay) * -1s);
}

.brand-orbit-chip {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    border-radius: 12px;
    border: 1px solid var(--border-purple);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    overflow: hidden;
    animation: orbit-counter 22s linear infinite;
    animation-delay: calc(var(--delay) * -1s);
}

.brand-orbit-chip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(var(--logo-scale, 1));
}

.bg-purple { background: var(--purple); }
.bg-orange { background: var(--orange); }
.bg-blue   { background: var(--blue); }
.bg-yellow { background: var(--yellow); color: #121212; }
.bg-coral  { background: var(--coral); }

/* ── Process ── */
.process-section {
    text-align: center;
    scroll-margin-top: 96px;
}

.portfolio-section {
    scroll-margin-top: 96px;
}

.process-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 10px;
}

.process-sub {
    max-width: 520px;
    margin: 0 auto 48px;
}

.process-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.process-line {
    position: absolute;
    top: 28px;
    left: 16%;
    right: 16%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--blue), var(--yellow));
    border-radius: 3px;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-purple);
    border-radius: 14px;
    padding: 48px 20px 24px;
    text-align: center;
}

.step-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-cta);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px var(--purple-glow);
}

.process-step h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.88rem;
    margin: 0;
}

/* ── Service Themes ── */
.service-theme-purple {
    --service-accent: var(--purple);
    --service-glow: rgba(123, 97, 255, 0.4);
}

.service-theme-blue {
    --service-accent: var(--blue);
    --service-glow: rgba(91, 192, 235, 0.4);
}

.service-theme-orange {
    --service-accent: var(--orange);
    --service-glow: rgba(255, 127, 80, 0.4);
}

.service-theme-yellow {
    --service-accent: var(--yellow);
    --service-glow: rgba(255, 215, 0, 0.35);
}

/* ── Portfolio (Home) ── */
.portfolio-section .section-intro {
    margin-bottom: 36px;
}

.portfolio-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.portfolio-card-v2 {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-purple);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.portfolio-card-v2:hover {
    transform: translateY(-6px);
    border-color: var(--service-accent);
    box-shadow: 0 14px 36px var(--service-glow);
}

.portfolio-card-v2-media {
    position: relative;
    height: 168px;
    overflow: hidden;
}

.portfolio-card-v2-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.82) 100%);
}

.portfolio-card-v2-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}

.portfolio-card-v2:hover .portfolio-card-v2-media img {
    transform: scale(1.06);
}

.portfolio-card-v2-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid var(--service-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.portfolio-card-v2-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.portfolio-card-v2-tag {
    margin: 0 0 6px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--service-accent);
    font-weight: 700;
}

.portfolio-card-v2-body h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 1.05rem;
}

.portfolio-card-v2-body p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.45;
    flex: 1;
}

.portfolio-card-v2-link {
    margin-top: 14px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--service-accent);
}

/* ── Service Pages ── */
.service-page-hero {
    position: relative;
}

.service-page-hero::before {
    content: "";
    position: absolute;
    top: 60px;
    right: 8%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--service-glow) 0%, transparent 70%);
    pointer-events: none;
}

.service-hero-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-purple);
    box-shadow: 0 16px 40px var(--service-glow);
}

.service-hero-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--service-glow), transparent 55%);
    z-index: 1;
    pointer-events: none;
}

.service-hero-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid var(--service-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.service-hero-visual img {
    width: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.service-outcomes-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-purple);
    border-bottom: 1px solid var(--border-purple);
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.service-stat-card {
    background: var(--bg);
    border: 1px solid var(--border-purple);
    border-radius: 14px;
    padding: 20px 18px;
    text-align: center;
}

.service-stat-card strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 1.15rem;
    color: var(--service-accent);
    margin-bottom: 6px;
}

.service-stat-card span {
    font-size: 0.84rem;
    color: var(--muted);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.service-panel {
    background: var(--bg);
    border: 1px solid var(--border-purple);
    border-radius: 16px;
    padding: 28px;
}

.service-panel h2 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.service-panel-highlight {
    border-color: var(--service-accent);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.service-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-checklist li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.92rem;
    color: var(--muted);
}

.service-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--service-accent);
    font-weight: 700;
}

.service-outcome-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-clients-strip {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.service-clients-label {
    text-align: center;
    margin: 0 0 14px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

/* ── Services Hub ── */
.service-hub-hero .section-intro p:last-of-type {
    margin-bottom: 22px;
}

.service-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-hub-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-purple);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.service-hub-card:hover {
    transform: translateY(-5px);
    border-color: var(--service-accent);
    box-shadow: 0 12px 32px var(--service-glow);
}

.service-hub-card-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-hub-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.75) 100%);
}

.service-hub-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}

.service-hub-card:hover .service-hub-card-media img {
    transform: scale(1.05);
}

.service-hub-card-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--service-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hub-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-hub-priority {
    margin: 0 0 6px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--service-accent);
    font-weight: 700;
}

.service-hub-card-body h3 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 1.2rem;
}

.service-hub-card-body p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

.service-hub-link {
    margin-top: 16px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--service-accent);
}

/* ── Features ── */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.features-copy h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 28px;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 20px;
}

.feature-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature-list strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
}

.feature-list p {
    margin: 0;
    font-size: 0.9rem;
}

.features-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 280px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    height: 240px;
}

.bar {
    width: 52px;
    border-radius: 8px 8px 0 0;
    animation: growBar 1.2s ease forwards;
}

.bar-yellow  { height: 55%;  background: var(--yellow); animation-delay: 0.1s; }
.bar-purple  { height: 80%;  background: var(--purple); animation-delay: 0.3s; }
.bar-blue    { height: 65%;  background: var(--blue);   animation-delay: 0.5s; }
.bar-orange  { height: 95%;  background: var(--orange); animation-delay: 0.7s; }

@keyframes growBar {
    from { height: 0; }
}

/* ── Testimonial ── */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.testimonial-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 320px;
}

.testimonial-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.testimonial-quote {
    background: var(--white);
    color: #121212;
    margin: 0;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: #333;
    margin: 0 0 24px;
    line-height: 1.7;
}

.testimonial-quote footer strong {
    display: block;
    font-size: 1rem;
    color: #121212;
}

.testimonial-quote footer span {
    font-size: 0.85rem;
    color: #666;
}

/* ── Pricing ── */
.pricing-section {
    text-align: center;
}

.pricing-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 8px;
}

.pricing-sub {
    margin-bottom: 36px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 32px 24px;
    border-top: 4px solid;
    border: 1px solid var(--border);
    border-top-width: 4px;
    position: relative;
}

.border-yellow { border-top-color: var(--yellow); }
.border-blue   { border-top-color: var(--blue); }
.border-purple { border-top-color: var(--purple); }

.pricing-card.featured {
    background: var(--bg-elevated);
    border-color: var(--border-purple);
    border-top-color: var(--blue);
    box-shadow: 0 12px 40px var(--purple-glow);
    padding-top: 44px;
    transform: scale(1.04);
}

.pricing-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.pricing-card li {
    font-size: 0.88rem;
    color: var(--muted);
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}

.pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c4b5fd;
    font-weight: 700;
}

.badge {
    position: absolute;
    top: 14px;
    right: 16px;
    background: var(--purple);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ── Overlay CTA ── */
.overlay-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.overlay-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(18, 4, 30, 0.92), rgba(56, 16, 85, 0.75));
}

.overlay-cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.overlay-cta-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 14px;
}

.overlay-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

/* ── Footer CTA ── */
.footer-cta {
    background: var(--bg-elevated);
    padding: 48px 0;
    border-top: 1px solid var(--border-purple);
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-cta-inner h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--white);
    margin: 0;
}

/* ── Footer ── */
.site-footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border-purple);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.newsletter {
    display: flex;
    gap: 8px;
}

.newsletter input {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text);
    font-family: "Inter", sans-serif;
    min-width: 240px;
}

.newsletter .btn-yellow {
    padding: 12px 20px;
    font-size: 0.88rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.footer-grid h4 {
    color: var(--white);
    font-size: 0.92rem;
    margin-bottom: 14px;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-grid li {
    margin-bottom: 8px;
}

.footer-grid a {
    color: var(--muted);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-grid a:hover {
    color: #d8b4fe;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--muted);
    transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
    background: var(--gradient-cta);
    color: #fff;
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.footer-bottom small {
    color: var(--muted);
    font-size: 0.82rem;
}

/* ── Inner Pages ── */
.page-hero {
    padding-top: 100px;
    padding-bottom: 40px;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 14px;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: #c4b5fd;
    font-weight: 600;
    margin-bottom: 10px;
}

.media-row,
.split-grid,
.contact-grid,
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.media-frame img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    min-height: 300px;
    border: 1px solid var(--border-purple);
    box-shadow: 0 8px 30px rgba(74, 29, 150, 0.2);
}

.panel {
    background: var(--bg-card);
    border: 1px solid var(--border-purple);
    border-radius: 14px;
    padding: 28px;
}

.panel h2 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.panel ul {
    padding-left: 20px;
}

.panel li {
    color: var(--muted);
    margin-bottom: 8px;
    font-size: 0.92rem;
}

.btn-primary {
    display: inline-block;
    background: var(--gradient-cta);
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 24px;
    margin-top: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px var(--purple-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--purple-glow);
}

.service-list {
    display: grid;
    gap: 20px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-purple);
    border-radius: 14px;
    padding: 24px;
    align-items: center;
    transition: box-shadow 0.25s;
}

.service-row:hover {
    box-shadow: 0 8px 28px rgba(123, 97, 255, 0.15);
}

.service-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    min-height: 220px;
}

.contact-form {
    display: grid;
    gap: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    padding: 12px 14px;
    font-family: "Inter", sans-serif;
}

.contact-form label {
    color: var(--muted);
    font-size: 0.88rem;
}

.map-wrap iframe {
    width: 100%;
    min-height: 250px;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.contact-section .roster-whatsapp-cta {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.contact-form-panel,
.contact-side-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-location {
    margin: 0 0 14px;
    font-size: 0.92rem;
}

.map-wrap-aligned {
    flex: 1;
    display: flex;
    min-height: 0;
}

.map-wrap-aligned iframe {
    flex: 1;
    width: 100%;
    min-height: 480px;
    border: 1px solid var(--border-purple);
    border-radius: 12px;
}

.btn-whatsapp-block {
    width: 100%;
    margin-top: 16px;
    padding: 13px 18px;
}

.alert {
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.alert.success {
    border: 1px solid #2ecc71;
    background: rgba(46, 204, 113, 0.1);
    color: #a8f0c8;
}

.alert.error {
    border: 1px solid var(--coral);
    background: rgba(255, 107, 107, 0.1);
    color: #ffc8c8;
}

.benefits {
    margin: 16px 0 0;
    padding-left: 20px;
}

.benefits li {
    color: var(--muted);
    margin-bottom: 8px;
}

/* ── Influencer Service Page ── */
.section-intro {
    margin-bottom: 32px;
}

.section-intro.center {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.section-intro h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 10px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.method-card {
    background: var(--bg-card);
    border: 1px solid var(--border-purple);
    border-radius: 14px;
    padding: 22px;
}

.method-num {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    color: var(--purple);
    margin-bottom: 10px;
}

.method-card h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.method-card p {
    margin: 0;
    font-size: 0.88rem;
}

.influencer-roster {
    background: var(--bg-card);
    border-top: 1px solid var(--border-purple);
    border-bottom: 1px solid var(--border-purple);
}

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

.roster-card {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
    scroll-margin-top: 96px;
}

.roster-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(123, 97, 255, 0.25);
}

.roster-photo img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.roster-body {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roster-body h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.roster-ig {
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 6px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.roster-ig:hover {
    opacity: 0.85;
}

.roster-followers {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 12px;
}

.partners-block {
    width: 100%;
    margin-bottom: 14px;
    text-align: left;
}

.partners-label {
    margin: 0 0 8px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

.partners-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.partners-list li {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 4px 8px;
}

.partners-more {
    font-style: italic;
    opacity: 0.85;
    border-style: dashed;
}

.social-clients-section {
    border-top: 1px solid var(--border-purple);
}

.social-clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.social-client-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 14px 12px;
    border: 1px solid var(--border-purple);
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    transition: border-color 0.2s, color 0.2s;
}

.social-client-card:hover {
    border-color: var(--purple);
    color: #d8b4fe;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 8px;
    padding: 11px 18px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

.roster-whatsapp-cta {
    margin-top: 32px;
    text-align: center;
    padding: 22px 20px;
    border: 1px solid var(--border-purple);
    border-radius: 12px;
    background: rgba(123, 97, 255, 0.08);
}

.roster-whatsapp-cta p {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
}

.roster-whatsapp-cta a {
    color: #25d366;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.roster-whatsapp-cta a:hover {
    color: #1ebe57;
}

.roster-cta {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-purple);
    border-radius: 16px;
    padding: 40px 28px;
}

.roster-cta h2 {
    color: var(--white);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-bottom: 10px;
}

.roster-cta p {
    max-width: 520px;
    margin: 0 auto 22px;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

/* ── Animations ── */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js-anim .fade-in {
    opacity: 0;
    transform: translateY(24px);
}

html.js-anim .fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 980px) {
    .hero-v2-grid,
    .creator-cards,
    .process-track,
    .portfolio-grid-v2,
    .service-stats,
    .service-detail-grid,
    .service-hub-grid,
    .features-grid,
    .testimonial-grid,
    .pricing-grid,
    .footer-grid,
    .media-row,
    .split-grid,
    .contact-grid,
    .contact-layout,
    .service-row,
    .method-grid,
    .roster-grid,
    .social-clients-grid {
        grid-template-columns: 1fr;
    }

    .process-line {
        display: none;
    }

    .pricing-card.featured {
        transform: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        left: 4vw;
        right: 4vw;
        top: 68px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 20px;
    }

    .main-nav.open {
        display: flex;
    }

    .hero-orbit,
    .influencer-orbit-hero {
        width: min(340px, 88vw);
        height: min(340px, 88vw);
    }

    .influencer-orbit-center {
        width: 180px;
        height: 180px;
    }

    .influencer-orbit-center img {
        width: 76px;
        height: 76px;
    }

    .logo-chip {
        width: 148px;
        height: 82px;
        padding: 5px 6px;
    }

    .orbit-icon-wrap {
        width: 46px;
        height: 46px;
    }

    .orbit-icon-wrap img {
        width: 24px;
        height: 24px;
    }

    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter {
        flex-direction: column;
        width: 100%;
    }

    .newsletter input {
        min-width: unset;
        width: 100%;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}
