/* ============================================================
   THE FORMULA MEDIA
   TikTok Growth Landing Page
   tiktok.css
============================================================ */


/* ============================================================
   1. GLOBAL VARIABLES
============================================================ */

:root {

    --bg-main: #020713;
    --bg-secondary: #050b18;
    --bg-card: #07101f;
    --bg-card-light: #0b1425;

    --white: #ffffff;
    --text: #f7f8fc;
    --text-soft: #c7cde0;
    --text-muted: #8993aa;

    --cyan: #25d9f8;
    --blue: #3187ff;
    --purple: #8b5cf6;
    --pink: #ec4899;

    --tiktok-cyan: #25f4ee;
    --tiktok-pink: #fe2c55;

    --gradient:
        linear-gradient(
            90deg,
            #24d8f5 0%,
            #3187ff 32%,
            #8b5cf6 68%,
            #ec4899 100%
        );

    --gradient-diagonal:
        linear-gradient(
            135deg,
            #25d9f8 0%,
            #3187ff 35%,
            #8b5cf6 68%,
            #ec4899 100%
        );

    --border:
        rgba(255, 255, 255, 0.10);

    --border-light:
        rgba(255, 255, 255, 0.17);

    --glass:
        rgba(9, 17, 33, 0.78);

    --radius: 26px;
    --radius-small: 16px;

    --max-width: 1260px;

    --shadow:
        0 30px 80px rgba(0, 0, 0, 0.38);

}


/* ============================================================
   2. RESET
============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}


body {

    margin: 0;

    min-width: 320px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(37, 217, 248, 0.10),
            transparent 30rem
        ),

        radial-gradient(
            circle at 90% 15%,
            rgba(236, 72, 153, 0.08),
            transparent 30rem
        ),

        var(--bg-main);

    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

}


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


button {
    font: inherit;
}


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


ul {
    padding: 0;
    margin: 0;
}


p {
    color: var(--text-soft);
}


::selection {
    background: var(--purple);
    color: white;
}



/* ============================================================
   3. CONTAINERS
============================================================ */

.container {

    width:
        min(
            calc(100% - 48px),
            var(--max-width)
        );

    margin-inline: auto;

}


.section {

    position: relative;

    padding:
        120px
        0;

}



/* ============================================================
   4. GLOBAL TYPOGRAPHY
============================================================ */

h1,
h2,
h3 {

    margin-top: 0;

    color: var(--white);

    letter-spacing: -0.045em;

    line-height: 1.04;

}


h1 {

    margin-bottom: 28px;

    font-size:
        clamp(
            4rem,
            7vw,
            7rem
        );

    font-weight: 850;

}


h2 {

    margin-bottom: 22px;

    font-size:
        clamp(
            2.7rem,
            5vw,
            5rem
        );

    font-weight: 820;

}


h3 {

    margin-bottom: 14px;

    font-size:
        clamp(
            1.35rem,
            2vw,
            1.8rem
        );

}


.gradient-text {

    display: inline-block;

    background: var(--gradient);

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;

    -webkit-text-fill-color: transparent;

}



/* ============================================================
   5. HEADER
============================================================ */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(2, 7, 19, 0.90);

    border-bottom:
        1px solid var(--border);

    backdrop-filter:
        blur(20px);

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

}


.header-content {

    display: flex;

    min-height: 86px;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}



/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 6px;

    flex-shrink: 0;

    font-size: 1.22rem;

    font-weight: 800;

    letter-spacing: -0.04em;

}


.logo-gradient {

    background: var(--gradient);

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;

    -webkit-text-fill-color: transparent;

}


.logo-white {
    color: white;
}



/* NAV */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 32px;

}


.nav-menu a {

    position: relative;

    color: #cbd2e4;

    font-size: 0.94rem;

    font-weight: 600;

    transition: 0.2s ease;

}


.nav-menu a:hover {
    color: white;
}


.nav-menu a::after {

    position: absolute;

    content: "";

    width: 0;
    height: 2px;

    left: 0;
    bottom: -7px;

    background: var(--gradient);

    transition:
        width 0.2s ease;

}


.nav-menu a:hover::after {
    width: 100%;
}



/* HEADER ACTIONS */

.header-actions {

    display: flex;

    align-items: center;

    gap: 16px;

}


.phone-button {

    padding:
        10px
        19px;

    border:
        1px solid rgba(37, 217, 248, 0.35);

    border-radius: 999px;

    color: white;

    font-size: 0.85rem;

    font-weight: 700;

    background:
        rgba(37, 217, 248, 0.06);

    transition:
        0.2s ease;

}


.phone-button:hover {

    border-color:
        rgba(37, 217, 248, 0.7);

    background:
        rgba(37, 217, 248, 0.10);

}



/* LANGUAGE SWITCH */

.language-switcher {

    display: flex;

    align-items: center;

    padding: 5px;

    border:
        1px solid var(--border-light);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.04);

}


.language-btn {

    min-width: 42px;

    padding:
        7px
        11px;

    border: none;

    border-radius: 999px;

    background: transparent;

    color: #aeb7ca;

    cursor: pointer;

    font-size: 0.78rem;

    font-weight: 800;

}


.language-btn.active {

    background:
        var(--gradient);

    color: white;

}



/* MOBILE MENU BUTTON */

.menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

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

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.05);

    color: white;

    cursor: pointer;

}



/* ============================================================
   6. BUTTONS
============================================================ */

.btn {

    display: inline-flex;

    min-height: 54px;

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

    padding:
        14px
        28px;

    border-radius: 999px;

    border: none;

    cursor: pointer;

    font-weight: 750;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border 0.2s ease;

}


.btn:hover {

    transform:
        translateY(-3px);

}


.btn-gradient {

    position: relative;

    background: var(--gradient);

    color: white;

    box-shadow:
        0 12px 40px
        rgba(77, 112, 255, 0.30);

}


.btn-gradient:hover {

    box-shadow:
        0 16px 50px
        rgba(139, 92, 246, 0.42);

}


.btn-outline {

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

    background:
        rgba(255, 255, 255, 0.035);

    color: white;

}


.btn-outline:hover {

    border-color:
        rgba(37, 217, 248, 0.55);

    background:
        rgba(37, 217, 248, 0.06);

}


.btn-large {

    min-height: 62px;

    padding:
        17px
        34px;

}



/* ============================================================
   7. HERO
============================================================ */

.hero {

    position: relative;

    min-height:
        calc(100vh - 86px);

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        100px
        0
        120px;

}



/* HERO BACKGROUND */

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: 0.12;

    background-image:

        linear-gradient(
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        );

    background-size:
        65px
        65px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 30%,
            transparent
        );

}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter:
        blur(120px);

    pointer-events: none;

}


.hero-glow-cyan {

    width: 520px;
    height: 520px;

    left: -260px;
    top: 40px;

    background:
        rgba(37, 217, 248, 0.15);

}


.hero-glow-purple {

    width: 600px;
    height: 600px;

    right: -260px;
    top: 0;

    background:
        rgba(168, 70, 255, 0.16);

}



/* HERO LAYOUT */

.hero-layout {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        0.92fr;

    align-items: center;

    gap: 70px;

}



/* HERO COPY */

.hero-copy {
    position: relative;
}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 30px;

    padding:
        9px
        17px;

    border:
        1px solid rgba(37, 217, 248, 0.34);

    border-radius: 999px;

    background:
        rgba(37, 217, 248, 0.07);

    color:
        #a9eaf5;

    font-size: 0.76rem;

    font-weight: 800;

    letter-spacing: 0.13em;

}


.tiktok-mini-icon {

    position: relative;

    color: white;

    font-size: 1rem;

    text-shadow:
        -2px 0 var(--tiktok-cyan),
        2px 0 var(--tiktok-pink);

}


.hero-description {

    max-width: 650px;

    margin-bottom: 34px;

    color: #c8cfe1;

    font-size:
        clamp(
            1.05rem,
            1.5vw,
            1.25rem
        );

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

}



/* HERO TRUST */

.hero-trust {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 44px;

}


.trust-item {

    display: flex;

    flex-direction: column;

}


.trust-item strong {

    color: white;

    font-size: 0.9rem;

}


.trust-item span {

    color: var(--text-muted);

    font-size: 0.73rem;

}


.trust-divider {

    width: 1px;
    height: 30px;

    background:
        rgba(255, 255, 255, 0.13);

}



/* ============================================================
   8. HERO PHONE VISUAL
============================================================ */

.hero-visual {

    position: relative;

    min-height: 650px;

    display: flex;

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

}



/* PHONE GLOW */

.phone-glow {

    position: absolute;

    width: 430px;
    height: 540px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(37, 244, 238, 0.20),
            rgba(139, 92, 246, 0.18),
            rgba(254, 44, 85, 0.18)
        );

    filter:
        blur(80px);

}



/* PHONE */

.tiktok-phone {

    position: relative;

    z-index: 4;

    width: 310px;

    transform:
        rotate(2deg);

}


.phone-frame {

    padding: 9px;

    border-radius: 42px;

    background:
        linear-gradient(
            145deg,
            #3b455a,
            #0b0d12 35%,
            #1d2430
        );

    box-shadow:

        0 45px 100px
        rgba(0, 0, 0, 0.65),

        -10px 0 50px
        rgba(37, 244, 238, 0.08),

        10px 0 50px
        rgba(254, 44, 85, 0.08);

}


.phone-top {

    position: absolute;

    z-index: 20;

    width: 100px;
    height: 25px;

    top: 15px;
    left: 50%;

    transform:
        translateX(-50%);

    border-radius: 20px;

    background: #050609;

}


.phone-speaker {

    width: 35px;
    height: 4px;

    margin:
        9px
        auto;

    border-radius: 10px;

    background: #262a31;

}


.phone-screen {

    position: relative;

    height: 610px;

    overflow: hidden;

    border-radius: 34px;

    background: #08090c;

}



/* PHONE TOPBAR */

.tiktok-topbar {

    position: absolute;

    z-index: 15;

    display: flex;

    width: 100%;

    justify-content: center;

    gap: 18px;

    top: 43px;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 0.72rem;

}


.tiktok-topbar strong {

    position: relative;

    color: white;

}


.tiktok-topbar strong::after {

    position: absolute;

    content: "";

    width: 25px;
    height: 2px;

    left: 50%;
    bottom: -7px;

    transform:
        translateX(-50%);

    background: white;

}



/* FAKE VIDEO */

.fake-tiktok-video {

    position: relative;

    height: 100%;

    overflow: hidden;

}


.video-gradient-bg {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 25% 25%,
            rgba(37, 244, 238, 0.30),
            transparent 35%
        ),

        radial-gradient(
            circle at 80% 65%,
            rgba(254, 44, 85, 0.24),
            transparent 38%
        ),

        linear-gradient(
            160deg,
            #06172b,
            #10112e 50%,
            #19091c
        );

}


.video-gradient-bg::after {

    position: absolute;

    content: "";

    inset: 0;

    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );

    background-size:
        18px
        18px;

    opacity: 0.12;

}



/* PHONE CONTENT */

.video-content {

    position: absolute;

    z-index: 4;

    width: 80%;

    left: 24px;
    top: 165px;

}


.tiktok-large-icon {

    display: inline-block;

    margin-bottom: 25px;

    color: white;

    font-size: 3.4rem;

    font-weight: 900;

    text-shadow:

        -5px -1px
        var(--tiktok-cyan),

        5px 2px
        var(--tiktok-pink);

}


.video-small {

    margin-bottom: 8px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 0.62rem;

    font-weight: 800;

    letter-spacing: 0.16em;

}


.video-content h3 {

    max-width: 210px;

    margin-bottom: 18px;

    font-size: 2rem;

    line-height: 1;

}


.video-line {

    width: 48px;
    height: 4px;

    margin-bottom: 15px;

    border-radius: 20px;

    background:
        var(--gradient);

}


.video-caption {

    color:
        rgba(255, 255, 255, 0.75);

    font-size: 0.72rem;

}



/* TIKTOK ACTIONS */

.tiktok-actions {

    position: absolute;

    z-index: 10;

    right: 12px;
    bottom: 95px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 17px;

}


.profile-circle {

    display: grid;

    width: 39px;
    height: 39px;

    place-items: center;

    border:
        2px solid white;

    border-radius: 50%;

    background:
        var(--gradient);

    color: white;

    font-size: 0.65rem;

    font-weight: 800;

}


.tiktok-action {

    display: flex;

    flex-direction: column;

    align-items: center;

    color: white;

}


.action-icon {

    font-size: 1.4rem;

}


.tiktok-action small {

    margin-top: 2px;

    font-size: 0.55rem;

}



/* VIDEO BOTTOM */

.video-bottom {

    position: absolute;

    z-index: 10;

    left: 16px;
    bottom: 24px;

    width: 76%;

}


.video-bottom strong {

    font-size: 0.72rem;

}


.video-bottom p {

    margin:
        4px
        0;

    color: white;

    font-size: 0.63rem;

}


.video-bottom span {

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 0.57rem;

}



/* ============================================================
   9. FLOATING HERO METRICS
============================================================ */

.floating-card {

    position: absolute;

    z-index: 8;

    display: flex;

    align-items: center;

    gap: 13px;

    min-width: 175px;

    padding:
        13px
        16px;

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

    border-radius: 16px;

    background:
        rgba(8, 16, 31, 0.83);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.35);

    backdrop-filter:
        blur(18px);

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

}


.floating-card small {

    display: block;

    margin-bottom: 1px;

    color: var(--text-muted);

    font-size: 0.52rem;

    font-weight: 800;

    letter-spacing: 0.10em;

}


.floating-card strong {

    display: block;

    color: white;

    font-size: 1rem;

    line-height: 1.15;

}


.floating-card span {

    color: var(--text-soft);

    font-size: 0.65rem;

}


.metric-icon {

    display: grid;

    width: 38px;
    height: 38px;

    flex:
        0
        0
        38px;

    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink)
        );

    color: white;

    font-weight: 900;

}


.metric-icon.cyan {

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            var(--blue)
        );

}


.metric-followers {

    top: 65px;
    right: -20px;

}


.metric-ads {

    left: -55px;
    top: 185px;

}


.metric-pixel {

    right: -55px;
    bottom: 150px;

}


.metric-ugc {

    left: -30px;
    bottom: 65px;

}


.metric-dot {

    width: 13px;
    height: 13px;

    border-radius: 50%;

    background: #43e9a8;

    box-shadow:
        0 0 20px
        rgba(67, 233, 168, 0.8);

}


.ugc-avatar {

    display: grid;

    width: 40px;
    height: 40px;

    place-items: center;

    border-radius: 50%;

    background:
        var(--gradient);

    color: white !important;

    font-size: 0.58rem !important;

    font-weight: 900;

}



/* ============================================================
   10. SECTION HEADINGS
============================================================ */

.section-heading {

    max-width: 800px;

    margin-bottom: 60px;

}


.section-heading.centered {

    margin-inline: auto;

    text-align: center;

}


.section-heading p {

    max-width: 700px;

    font-size: 1.08rem;

}


.section-heading.centered p {

    margin-inline: auto;

}


.section-badge {

    display: inline-flex;

    margin-bottom: 20px;

    padding:
        8px
        15px;

    border:
        1px solid rgba(37, 217, 248, 0.25);

    border-radius: 999px;

    background:
        rgba(37, 217, 248, 0.06);

    color: #a7eaf5;

    font-size: 0.68rem;

    font-weight: 850;

    letter-spacing: 0.16em;

}



/* ============================================================
   11. SERVICES
============================================================ */

.services {

    border-top:
        1px solid var(--border);

    background:

        radial-gradient(
            circle at 50% 100%,
            rgba(49, 135, 255, 0.07),
            transparent 35rem
        ),

        var(--bg-secondary);

}


.services-grid {

    display: grid;

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

    gap: 18px;

}


.service-card {

    position: relative;

    min-height: 320px;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:

        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.015)
        ),

        var(--bg-card);

    transition:
        transform 0.25s ease,
        border 0.25s ease,
        box-shadow 0.25s ease;

}


.service-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(37, 217, 248, 0.28);

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.25);

}


.service-card::after {

    position: absolute;

    content: "";

    width: 140px;
    height: 140px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background:
        rgba(139, 92, 246, 0.12);

    filter:
        blur(40px);

}


.service-icon {

    display: grid;

    width: 52px;
    height: 52px;

    margin-bottom: 40px;

    place-items: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(37, 217, 248, 0.16),
            rgba(139, 92, 246, 0.17)
        );

    border:
        1px solid
        rgba(37, 217, 248, 0.20);

    color: white;

    font-size: 1.25rem;

    font-weight: 900;

}


.tiktok-service-icon {

    text-shadow:

        -2px 0
        var(--tiktok-cyan),

        2px 0
        var(--tiktok-pink);

}


.service-number {

    position: absolute;

    top: 32px;
    right: 28px;

    color:
        rgba(255, 255, 255, 0.22);

    font-size: 0.7rem;

    font-weight: 800;

}


.service-card h3 {

    margin-bottom: 14px;

}


.service-card p {

    margin-bottom: 0;

    color: var(--text-muted);

    font-size: 0.91rem;

}



/* ============================================================
   12. PRICING
============================================================ */

.pricing {

    position: relative;

    overflow: hidden;

}


.pricing-glow {

    position: absolute;

    width: 900px;
    height: 600px;

    left: 50%;
    top: 220px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        rgba(139, 92, 246, 0.07);

    filter:
        blur(130px);

}


.pricing-grid {

    position: relative;

    display: grid;

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

    align-items: stretch;

    gap: 20px;

}



/* PRICING CARD */

.pricing-card {

    position: relative;

    display: flex;

    flex-direction: column;

    padding:
        36px
        30px
        30px;

    border:
        1px solid var(--border);

    border-radius:
        28px;

    background:

        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.04),
            transparent 30%
        ),

        var(--bg-card);

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.22);

}



/* FEATURED CARD */

.pricing-featured {

    border:
        1px solid transparent;

    background:

        linear-gradient(
            var(--bg-card),
            var(--bg-card)
        )
        padding-box,

        var(--gradient-diagonal)
        border-box;

    box-shadow:

        0 30px 90px
        rgba(0, 0, 0, 0.35),

        0 0 50px
        rgba(76, 113, 255, 0.10);

    transform:
        translateY(-12px);

}


.popular-badge {

    position: absolute;

    top: -14px;
    left: 50%;

    transform:
        translateX(-50%);

    padding:
        8px
        18px;

    border-radius: 999px;

    background:
        var(--gradient);

    color: white;

    font-size: 0.65rem;

    font-weight: 900;

    letter-spacing: 0.12em;

    white-space: nowrap;

}



/* PLAN TOP */

.plan-top {

    min-height: 290px;

}


.plan-icon {

    display: grid;

    width: 45px;
    height: 45px;

    margin-bottom: 26px;

    place-items: center;

    border:
        1px solid var(--border-light);

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.04);

    color: var(--cyan);

    font-size: 0.72rem;

    font-weight: 850;

}


.gradient-icon {

    background:
        var(--gradient);

    color: white;

    border: none;

}


.plan-name {

    margin-bottom: 10px;

    color: var(--cyan);

    font-size: 0.68rem;

    font-weight: 900;

    letter-spacing: 0.16em;

}


.pricing-card h3 {

    min-height: 55px;

    margin-bottom: 25px;

}



/* PRICE */

.price {

    display: flex;

    align-items: flex-end;

    margin-bottom: 22px;

}


.price .currency {

    align-self: flex-start;

    margin-top: 7px;
    margin-right: 3px;

    color: #cdd3e0;

    font-size: 1.1rem;

    font-weight: 700;

}


.price strong {

    color: white;

    font-size:
        clamp(
            3rem,
            4vw,
            4.1rem
        );

    font-weight: 850;

    letter-spacing: -0.065em;

    line-height: 0.9;

}


.price .period {

    margin-left: 8px;
    margin-bottom: 4px;

    color: var(--text-muted);

    font-size: 0.78rem;

}


.plan-description {

    margin-bottom: 0;

    color: var(--text-muted);

    font-size: 0.88rem;

}



/* FEATURE LIST */

.feature-list {

    margin:
        5px
        0
        30px;

    list-style: none;

}


.feature-list li {

    position: relative;

    padding:
        11px
        0
        11px
        28px;

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

    color: #d6dbea;

    font-size: 0.86rem;

}


.feature-list li::before {

    position: absolute;

    left: 0;

    content: "✓";

    color: var(--cyan);

    font-weight: 900;

}



/* AD BUDGET */

.ad-budget-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 14px;

    margin-top: auto;
    margin-bottom: 20px;

    padding:
        15px
        16px;

    border:
        1px solid rgba(37, 217, 248, 0.14);

    border-radius: 13px;

    background:
        rgba(37, 217, 248, 0.035);

}


.ad-budget-box span {

    color: var(--text-muted);

    font-size: 0.58rem;

    font-weight: 800;

    letter-spacing: 0.10em;

}


.ad-budget-box strong {

    color: white;

    font-size: 0.82rem;

    white-space: nowrap;

}



/* PLAN BUTTON */

.btn-plan {

    width: 100%;

    background:
        rgba(255, 255, 255, 0.07);

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

    color: white;

}


.btn-plan:hover {

    border-color:
        rgba(37, 217, 248, 0.40);

    background:
        rgba(37, 217, 248, 0.07);

}


.pricing-featured .btn-plan {

    border: none;

    background: var(--gradient);

}



/* PRICING NOTE */

.pricing-note {

    display: flex;

    max-width: 900px;

    align-items: flex-start;

    gap: 13px;

    margin:
        42px
        auto
        0;

    padding:
        18px
        22px;

    border:
        1px solid var(--border);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.025);

}


.pricing-note span {

    color: var(--cyan);

}


.pricing-note p {

    margin: 0;

    color: var(--text-muted);

    font-size: 0.78rem;

}



/* ============================================================
   13. PAYPAL AREAS
============================================================ */

.paypal-container {

    width: 100%;

    margin-top: 14px;

}


.paypal-container:not(:empty) {

    padding-top: 16px;

    border-top:
        1px solid var(--border);

}



/* ============================================================
   14. 100K ACCOUNT ADD-ON
============================================================ */

.account-addon {

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

    background:
        var(--bg-secondary);

}


.addon-wrapper {

    display: grid;

    grid-template-columns:
        0.85fr
        1.15fr;

    overflow: hidden;

    border:
        1px solid transparent;

    border-radius:
        32px;

    background:

        linear-gradient(
            var(--bg-card),
            var(--bg-card)
        )
        padding-box,

        var(--gradient-diagonal)
        border-box;

    box-shadow:
        var(--shadow);

}



/* ADDON VISUAL */

.addon-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    flex-direction: column;

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

    overflow: hidden;

    border-right:
        1px solid var(--border);

    background:

        radial-gradient(
            circle at 30% 30%,
            rgba(37, 244, 238, 0.18),
            transparent 35%
        ),

        radial-gradient(
            circle at 70% 70%,
            rgba(254, 44, 85, 0.17),
            transparent 38%
        ),

        #060c19;

}


.addon-glow {

    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background:
        rgba(139, 92, 246, 0.18);

    filter:
        blur(100px);

}


.addon-tiktok-logo {

    position: relative;

    z-index: 3;

    margin-bottom: 28px;

    color: white;

    font-size: 6rem;

    font-weight: 900;

    line-height: 1;

    text-shadow:

        -9px -2px
        var(--tiktok-cyan),

        9px 3px
        var(--tiktok-pink);

}


.followers-display {

    position: relative;

    z-index: 3;

    text-align: center;

}


.followers-display small {

    display: block;

    margin-bottom: 7px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 0.63rem;

    font-weight: 850;

    letter-spacing: 0.15em;

}


.followers-display strong {

    display: block;

    color: white;

    font-size:
        clamp(
            4rem,
            8vw,
            7rem
        );

    font-weight: 900;

    letter-spacing: -0.08em;

    line-height: 0.95;

}


.followers-display span {

    color: #d2d8e6;

    font-size: 0.95rem;

}



/* ADDON CONTENT */

.addon-content {

    padding:
        65px
        60px;

}


.addon-content h2 {

    max-width: 600px;

}


.addon-content > p {

    max-width: 610px;

}


.addon-details {

    display: grid;

    grid-template-columns:
        0.7fr
        1.3fr;

    align-items: center;

    gap: 35px;

    margin:
        38px
        0;

    padding:
        28px
        0;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

}


.addon-price strong {

    display: block;

    color: white;

    font-size: 3.2rem;

    letter-spacing: -0.06em;

    line-height: 1;

}


.addon-price span {

    color: var(--cyan);

    font-size: 0.62rem;

    font-weight: 900;

    letter-spacing: 0.13em;

}


.addon-list {

    display: grid;

    gap: 9px;

    list-style: none;

}


.addon-list li {

    position: relative;

    padding-left: 24px;

    color: #d4daea;

    font-size: 0.87rem;

}


.addon-list li::before {

    position: absolute;

    left: 0;

    content: "✓";

    color: var(--cyan);

    font-weight: 900;

}


.addon-toggle {

    width: 100%;

}


.addon-toggle[aria-pressed="true"] {

    box-shadow:

        0 0 0 3px
        rgba(37, 217, 248, 0.12),

        0 15px 45px
        rgba(139, 92, 246, 0.25);

}


.addon-disclaimer {

    margin:
        18px
        0
        0;

    color: var(--text-muted);

    font-size: 0.72rem;

}



/* ============================================================
   15. PROCESS
============================================================ */

.process {

    overflow: hidden;

}


.process-grid {

    display: grid;

    grid-template-columns:
        1fr
        80px
        1fr
        80px
        1fr;

    align-items: center;

}


.process-card {

    min-height: 260px;

    padding: 32px;

    border:
        1px solid var(--border);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.015)
        );

}


.process-number {

    display: grid;

    width: 45px;
    height: 45px;

    margin-bottom: 48px;

    place-items: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            rgba(37, 217, 248, 0.15),
            rgba(139, 92, 246, 0.18)
        );

    color: var(--cyan);

    font-size: 0.7rem;

    font-weight: 900;

}


.process-card p {

    margin-bottom: 0;

    color: var(--text-muted);

    font-size: 0.9rem;

}


.process-line {

    height: 1px;

    background:
        var(--gradient);

    opacity: 0.5;

}



/* ============================================================
   16. FAQ
============================================================ */

.faq {

    border-top:
        1px solid var(--border);

    background:
        var(--bg-secondary);

}


.faq-container {

    max-width: 950px;

}


.faq-list {

    border-top:
        1px solid var(--border);

}


.faq-item {

    border-bottom:
        1px solid var(--border);

}


.faq-item summary {

    position: relative;

    padding:
        27px
        60px
        27px
        0;

    color: white;

    cursor: pointer;

    font-size: 1.02rem;

    font-weight: 700;

    list-style: none;

}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item summary::after {

    position: absolute;

    right: 8px;
    top: 50%;

    content: "+";

    transform:
        translateY(-50%);

    color: var(--cyan);

    font-size: 1.7rem;

    font-weight: 300;

    transition:
        transform 0.2s ease;

}


.faq-item[open] summary::after {

    transform:
        translateY(-50%)
        rotate(45deg);

}


.faq-item p {

    max-width: 800px;

    margin:
        -4px
        0
        28px;

    padding-right: 50px;

    color: var(--text-muted);

    font-size: 0.91rem;

}



/* ============================================================
   17. FINAL CTA
============================================================ */

.final-cta {

    position: relative;

    overflow: hidden;

    text-align: center;

}


.final-glow {

    position: absolute;

    width: 850px;
    height: 450px;

    left: 50%;
    bottom: -350px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        linear-gradient(
            90deg,
            rgba(37, 217, 248, 0.15),
            rgba(139, 92, 246, 0.18),
            rgba(236, 72, 153, 0.15)
        );

    filter:
        blur(100px);

}


.final-cta-content {

    position: relative;

    z-index: 3;

    max-width: 900px;

}


.tiktok-cta-icon {

    margin-bottom: 30px;

    color: white;

    font-size: 4rem;

    font-weight: 900;

    line-height: 1;

    text-shadow:

        -6px -1px
        var(--tiktok-cyan),

        6px 2px
        var(--tiktok-pink);

}


.final-cta-content p {

    max-width: 620px;

    margin:
        0
        auto
        32px;

    font-size: 1.05rem;

}



/* ============================================================
   18. FOOTER
============================================================ */

.site-footer {

    border-top:
        1px solid var(--border);

    background:
        #01050d;

}


.footer-content {

    display: flex;

    min-height: 110px;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.footer-content p {

    margin: 0;

    color: var(--text-muted);

    font-size: 0.74rem;

}


.footer-links a {

    color: var(--text-soft);

    font-size: 0.8rem;

}


.footer-links a:hover {

    color: white;

}



/* ============================================================
   19. BILINGUAL SUPPORT
============================================================ */

[data-en],
[data-es] {

    overflow-wrap: break-word;

}


html[lang="es"] .pricing-card h3 {

    min-height: 70px;

}


html[lang="es"] .plan-top {

    min-height: 310px;

}



/* ============================================================
   20. TABLET
============================================================ */

@media (max-width: 1120px) {


    .phone-button {
        display: none;
    }


    .nav-menu {
        gap: 22px;
    }


    .hero-layout {

        grid-template-columns:
            1fr
            0.85fr;

        gap: 30px;

    }


    .metric-followers {
        right: -10px;
    }


    .metric-ads {
        left: -20px;
    }


    .metric-pixel {
        right: -15px;
    }


    .metric-ugc {
        left: -10px;
    }


    .services-grid {

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

    }


    .pricing-grid {

        grid-template-columns: 1fr;

        max-width: 720px;

        margin-inline: auto;

        gap: 28px;

    }


    .pricing-featured {

        transform: none;

    }


    .plan-top,
    html[lang="es"] .plan-top {

        min-height: 0;

        margin-bottom: 25px;

    }


    .pricing-card h3,
    html[lang="es"] .pricing-card h3 {

        min-height: 0;

    }


}



/* ============================================================
   21. MOBILE NAV + TABLET
============================================================ */

@media (max-width: 860px) {


    .section {

        padding:
            90px
            0;

    }


    .header-content {

        position: relative;

        min-height: 75px;

    }


    .menu-toggle {

        display: inline-flex;

    }


    .nav-menu {

        position: absolute;

        display: none;

        top: 75px;
        left: 0;
        right: 0;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding:
            12px
            20px
            22px;

        border:
            1px solid var(--border);

        border-top: none;

        border-radius:
            0
            0
            18px
            18px;

        background:
            rgba(2, 7, 19, 0.98);

        box-shadow:
            0 25px 60px
            rgba(0, 0, 0, 0.45);

    }


    .nav-menu.active,
    .nav-menu.open,
    .nav-menu.is-open {

        display: flex;

    }


    .nav-menu a {

        padding:
            14px
            5px;

        border-bottom:
            1px solid var(--border);

    }


    .nav-menu a:last-child {

        border-bottom: none;

    }


    .hero {

        min-height: auto;

        padding:
            85px
            0
            90px;

    }


    .hero-layout {

        grid-template-columns: 1fr;

        gap: 70px;

    }


    .hero-copy {

        max-width: 720px;

    }


    .hero-visual {

        min-height: 650px;

    }


    .tiktok-phone {

        width: 300px;

    }


    .addon-wrapper {

        grid-template-columns: 1fr;

    }


    .addon-visual {

        min-height: 430px;

        border-right: none;

        border-bottom:
            1px solid var(--border);

    }


    .process-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .process-line {

        width: 1px;
        height: 35px;

        margin-inline: auto;

    }


}



/* ============================================================
   22. MOBILE
============================================================ */

@media (max-width: 600px) {


    .container {

        width:
            min(
                calc(100% - 30px),
                var(--max-width)
            );

    }


    .section {

        padding:
            72px
            0;

    }


    .logo {

        font-size: 0.95rem;

    }


    .header-actions {

        gap: 8px;

    }


    .language-switcher {

        padding: 3px;

    }


    .language-btn {

        min-width: 36px;

        padding:
            6px
            8px;

        font-size: 0.68rem;

    }


    .menu-toggle {

        width: 40px;
        height: 40px;

    }



    /* HERO */

    .hero {

        padding:
            65px
            0
            75px;

    }


    h1 {

        font-size:
            clamp(
                3.25rem,
                16vw,
                5rem
            );

    }


    h2 {

        font-size:
            clamp(
                2.35rem,
                11vw,
                3.5rem
            );

    }


    .hero-badge {

        font-size: 0.64rem;

    }


    .hero-description {

        font-size: 1rem;

    }


    .hero-actions {

        flex-direction: column;

    }


    .hero-actions .btn {

        width: 100%;

    }


    .hero-trust {

        display: grid;

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

        gap: 18px;

    }


    .trust-divider {

        display: none;

    }



    /* PHONE */

    .hero-visual {

        min-height: 620px;

    }


    .tiktok-phone {

        width: 270px;

    }


    .phone-screen {

        height: 550px;

    }


    .video-content {

        top: 145px;

    }


    .floating-card {

        min-width: 145px;

        padding:
            10px
            12px;

    }


    .metric-followers {

        right: -8px;
        top: 50px;

    }


    .metric-ads {

        left: -5px;
        top: 180px;

    }


    .metric-pixel {

        right: -5px;
        bottom: 120px;

    }


    .metric-ugc {

        left: -5px;
        bottom: 45px;

    }



    /* SERVICES */

    .services-grid {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: 280px;

    }



    /* PRICING */

    .pricing-card {

        padding:
            32px
            22px
            24px;

        border-radius: 22px;

    }


    .price strong {

        font-size: 3.4rem;

    }


    .ad-budget-box {

        align-items: flex-start;

        flex-direction: column;

    }



    /* ADDON */

    .addon-wrapper {

        border-radius: 23px;

    }


    .addon-visual {

        min-height: 350px;

    }


    .addon-tiktok-logo {

        font-size: 4.7rem;

    }


    .addon-content {

        padding:
            38px
            24px;

    }


    .addon-details {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .addon-price strong {

        font-size: 3rem;

    }



    /* PROCESS */

    .process-card {

        min-height: 230px;

        padding: 27px;

    }


    .process-number {

        margin-bottom: 38px;

    }



    /* FAQ */

    .faq-item summary {

        padding:
            23px
            45px
            23px
            0;

        font-size: 0.94rem;

    }


    .faq-item p {

        padding-right: 15px;

        font-size: 0.86rem;

    }



    /* FOOTER */

    .footer-content {

        flex-direction: column;

        justify-content: center;

        padding:
            32px
            0;

        text-align: center;

    }


}



/* ============================================================
   23. SMALL MOBILE
============================================================ */

@media (max-width: 420px) {


    .hero-visual {

        min-height: 590px;

    }


    .tiktok-phone {

        width: 245px;

    }


    .phone-screen {

        height: 515px;

    }


    .video-content {

        top: 135px;

    }


    .video-content h3 {

        font-size: 1.7rem;

    }


    .floating-card {

        min-width: 130px;

    }


    .floating-card strong {

        font-size: 0.85rem;

    }


    .floating-card small {

        font-size: 0.46rem;

    }


    .metric-followers {

        right: -3px;

    }


    .metric-ads {

        left: -3px;

    }


    .metric-pixel {

        right: -3px;

    }


    .metric-ugc {

        left: -3px;

    }


}



/* ============================================================
   24. ACCESSIBILITY
============================================================ */

.btn:focus-visible,
.language-btn:focus-visible,
.menu-toggle:focus-visible,
.nav-menu a:focus-visible,
.faq-item summary:focus-visible {

    outline:
        3px solid
        rgba(37, 217, 248, 0.45);

    outline-offset: 4px;

}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

    }

}