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

/* Logo subtle animation */
.logo-img {
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.logo-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    animation: logoShine 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes logoShine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

:root {
    --accent: #ff3c3c;
    --accent2: #ff8c00;
    --pill-bg: rgba(255, 60, 60, .1);
    --tr: background .4s ease, color .4s ease, border-color .4s ease
}

[data-theme=dark] {
    --bg: #080808;
    --surface: #111;
    --surface2: #181818;
    --border: rgba(255, 255, 255, .07);
    --text: #f2f2f2;
    --muted: #888;
    --nav-bg: rgba(8, 8, 8, .88);
    --card-shadow: 0 30px 60px rgba(0, 0, 0, .5);
    --cta-bg: linear-gradient(135deg, #1a0505, #0d0d0d);
    --scrollbar-thumb: #333;
    --sep: rgba(255, 255, 255, .06)
}

[data-theme=light] {
    --bg: #f7f5f2;
    --surface: #fff;
    --surface2: #f0ede8;
    --border: rgba(0, 0, 0, .09);
    --text: #111;
    --muted: #777;
    --nav-bg: rgba(247, 245, 242, .92);
    --card-shadow: 0 30px 60px rgba(0, 0, 0, .12);
    --cta-bg: linear-gradient(135deg, #fff0f0, #fff8f3);
    --scrollbar-thumb: #ccc;
    --sep: rgba(0, 0, 0, .07)
}

html {
    scroll-behavior: smooth
}

body {
    font-family: DM Sans, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
    transition: var(--tr)
}

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s;
    mix-blend-mode: difference
}

[data-theme=light] .cursor {
    mix-blend-mode: normal;
    background: #ff3c3c
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(255, 60, 60, .5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s
}

[data-theme=light] .cursor-ring {
    border-color: #ff3c3cb3
}

.cursor.big {
    width: 22px;
    height: 22px
}

.cursor-ring.big {
    width: 58px;
    height: 58px
}

@media(hover:none) {

    .cursor,
    .cursor-ring {
        display: none
    }

    body {
        cursor: auto
    }
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: .4
}

.sep {
    width: 100%;
    height: 1px;
    background: var(--sep);
    margin: 0
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: var(--nav-bg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    animation: fadeDown .6s ease both;
    transition: var(--tr)
}

.logo {
    font-family: Syne, sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -.03em;
    color: var(--text);
    text-decoration: none
}

.logo span {
    color: var(--accent)
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none
}

.nav-links a {
    font-size: .82rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: .02em;
    font-weight: 500;
    position: relative;
    transition: color .2s
}

.nav-links a:after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .25s
}

.nav-links a:hover {
    color: var(--text)
}

.nav-links a:hover:after {
    transform: scaleX(1)
}

.nav-links a.active {
    color: var(--text)
}

.nav-links a.active:after {
    transform: scaleX(1)
}

.nav-right {
    display: flex;
    gap: 10px;
    align-items: center
}

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.theme-toggle:hover {
    border-color: var(--accent);
    transform: rotate(20deg)
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    transition: all .35s
}

[data-theme=dark] .icon-sun {
    opacity: 1;
    transform: translateY(0)
}

[data-theme=dark] .icon-moon {
    opacity: 0;
    transform: translateY(8px)
}

[data-theme=light] .icon-sun {
    opacity: 0;
    transform: translateY(-8px)
}

[data-theme=light] .icon-moon {
    opacity: 1;
    transform: translateY(0)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    padding: 8px;
    background: none;
    border: none
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    z-index: 199;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .4s
}

.mobile-nav.open {
    max-height: 460px;
    padding: 20px 24px 28px
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px
}

.mobile-nav ul a {
    display: block;
    padding: 11px 0;
    font-size: .95rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color .2s
}

.mobile-nav ul a:hover {
    color: var(--text)
}

.mobile-nav-btns {
    display: flex;
    gap: 10px
}

.btn-ghost {
    background: none;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: .85rem;
    cursor: none;
    font-family: DM Sans, sans-serif;
    transition: all .2s
}

.btn-ghost:hover {
    border-color: var(--text);
    color: var(--text)
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: .85rem;
    cursor: none;
    font-family: DM Sans, sans-serif;
    font-weight: 600;
    transition: all .25s;
    position: relative;
    overflow: hidden
}

.btn-primary:after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff26;
    transform: translate(-100%) skew(-15deg);
    transition: transform .4s
}

.btn-primary:hover {
    background: #e02020;
    transform: scale(1.04);
    box-shadow: 0 8px 24px #ff3c3c59
}

.btn-primary:hover:after {
    transform: translate(120%) skew(-15deg)
}

.btn-primary.loading {
    pointer-events: none;
    opacity: .8
}

.btn-primary .spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    margin-right: 8px;
    vertical-align: middle
}

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

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: #000000d1;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
    padding: 20px
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all
}

.modal-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 44px;
    width: 100%;
    max-width: 560px;
    position: relative;
    transform: translateY(40px) scale(.97);
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), opacity .35s;
    opacity: 0;
    max-height: 92vh;
    overflow-y: auto
}

.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
    opacity: 1
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface2);
    color: var(--muted);
    font-size: .95rem;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s
}

.modal-close:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(90deg)
}

.modal-label {
    font-size: .72rem;
    color: var(--accent);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px
}

.modal-title {
    font-family: Syne, sans-serif;
    font-size: clamp(1.7rem, 4vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 8px
}

.modal-sub {
    font-size: .88rem;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.6
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px
}

.form-group label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text)
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--surface2);
    border: 1.5px solid var(--border);
    color: var(--text);
    padding: 11px 15px;
    border-radius: 12px;
    font-size: .88rem;
    font-family: DM Sans, sans-serif;
    transition: border-color .25s, box-shadow .25s;
    outline: none;
    width: 100%
}

.form-group textarea {
    resize: vertical;
    min-height: 96px
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px #ff3c3c1f
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted)
}

.form-group select option {
    background: var(--surface2)
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 700;
    font-family: DM Sans, sans-serif;
    cursor: none;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    margin-top: 6px
}

.form-submit:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    transform: translate(-100%);
    transition: transform .6s
}

.form-submit:hover {
    background: #e02020;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px #ff3c3c59
}

.form-submit:hover:before {
    transform: translate(100%)
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px
}

.form-success .s-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 16px;
    animation: bounceIn .6s cubic-bezier(.34, 1.56, .64, 1)
}

.form-success h3 {
    font-family: Syne, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px
}

.form-success p {
    color: var(--muted);
    font-size: .88rem
}

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

    to {
        transform: scale(1);
        opacity: 1
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 48px 80px;
    position: relative;
    overflow: hidden
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 60, 60, .12) 0%, transparent 70%);
    top: -100px;
    right: -200px;
    border-radius: 50%;
    animation: gPulse 6s ease-in-out infinite;
    pointer-events: none
}

.hero-glow2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 0, .07) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    animation: gPulse 8s ease-in-out infinite reverse;
    pointer-events: none
}

@keyframes gPulse {

    0%,
    to {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.15);
        opacity: .7
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    animation: floatP var(--dur, 8s) var(--del, 0s) ease-in-out infinite
}

@keyframes floatP {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0)
    }

    15% {
        opacity: .5
    }

    85% {
        opacity: .1
    }

    to {
        opacity: 0;
        transform: translateY(-100px) scale(2)
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pill-bg);
    border: 1px solid rgba(255, 60, 60, .25);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 32px;
    animation: fadeUp .8s .1s ease both
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.4s infinite
}

@keyframes blink {

    0%,
    to {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.hero-title {
    font-family: Syne, sans-serif;
    font-size: clamp(3.2rem, 6vw, 6.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.04em;
    max-width: 820px;
    animation: fadeUp .8s .2s ease both
}

.hero-title span {
    color: var(--accent)
}

.hero-title .line2 {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(242, 242, 242, .25);
    font-size: clamp(2rem, 5vw, 60px)
}

[data-theme=light] .hero-title .line2 {
    -webkit-text-stroke: 2px rgba(0, 0, 0, .55)
}

.hero-title .accent-word {
    color: var(--accent)
}

.hero-sub {
    margin-top: 28px;
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.7;
    animation: fadeUp .8s .35s ease both
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeUp .8s .5s ease both
}

.btn-large {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: none;
    font-family: DM Sans, sans-serif;
    font-weight: 600;
    transition: all .25s;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden
}

.btn-large:after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff26;
    transform: translate(-100%) skew(-15deg);
    transition: transform .4s
}

.btn-large:hover {
    background: #e02020;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px #ff3c3c4d
}

.btn-large:hover:after {
    transform: translate(120%) skew(-15deg)
}

.btn-outline-large {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: none;
    font-family: DM Sans, sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .25s
}

.btn-outline-large:hover {
    border-color: #ffffff4d;
    background: #ffffff0a
}

[data-theme=light] .btn-outline-large:hover {
    border-color: #0000004d;
    background: #0000000a
}

.play-icon {
    width: 20px;
    height: 20px;
    background: var(--text);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    display: inline-block;
    transition: transform .2s
}

.btn-outline-large:hover .play-icon {
    transform: scale(1.2)
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    animation: fadeUp .8s .65s ease both
}

.stat-num {
    font-family: Syne, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.03em
}

.stat-num span {
    color: var(--accent)
}

.stat-label {
    font-size: .82rem;
    color: var(--muted);
    margin-top: 2px
}

.scroll-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    margin: 0 6px;
    transition: all .3s;
    box-shadow: 0 2px 8px #00000026
}

.scroll-icon:hover {
    transform: scale(1.15);
    background: var(--text);
    box-shadow: 0 4px 12px #00000040
}

.scroll-icon-up:before {
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900
}

.scroll-icon-down:before {
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900
}

.scroll-icon-refresh:before {
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900
}

.scroll-icon-top:before {
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900
}

section {
    padding: 96px 48px;
    position: relative
}

.section-label {
    font-size: .75rem;
    color: var(--accent);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px
}

.section-title {
    font-family: Syne, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    max-width: 640px
}

.section-muted {
    color: var(--muted);
    max-width: 520px;
    margin-top: 14px;
    line-height: 1.7;
    font-size: .95rem
}

.section-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.about-section {
    background: var(--bg);
    position: relative;
    overflow: hidden
}

.about-section:before {
    content: "";
    position: absolute;
    top: -220px;
    right: -220px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(255, 60, 60, .07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0
}

.about-section:after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 140, 0, .05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0
}

.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 56px;
    position: relative;
    z-index: 1
}

.about-top-title {
    font-family: Syne, sans-serif;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.08;
    margin-top: 12px
}

.about-top-title em {
    font-style: normal;
    color: var(--accent)
}

.about-top-desc {
    font-size: .94rem;
    color: var(--muted);
    line-height: 1.8;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 60, 60, .28);
    margin-bottom: 28px
}

.about-cta-row {
    display: flex;
    align-items: center;
    gap: 20px
}

.about-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: .02em;
    transition: gap .25s
}

.about-cta-link:hover {
    gap: 14px
}

.about-cta-arrow {
    display: inline-block;
    transition: transform .25s
}

.about-cta-link:hover .about-cta-arrow {
    transform: translate(5px)
}

.about-v-divider {
    width: 1px;
    height: 30px;
    background: var(--border)
}

.about-est {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.5
}

.about-est strong {
    display: block;
    font-size: .88rem;
    font-family: Syne, sans-serif;
    font-weight: 700;
    color: var(--text)
}

.about-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 56px;
    background: var(--surface);
    position: relative;
    z-index: 1
}

.about-metric {
    padding: 30px 26px;
    position: relative;
    transition: background .3s, transform .3s;
    cursor: none
}

.about-metric:not(:last-child) {
    border-right: 1px solid var(--border)
}

.about-metric:hover {
    background: var(--pill-bg)
}

.about-metric-icon {
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: block
}

.about-metric-num {
    font-family: Syne, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.05em;
    line-height: 1
}

.about-metric-num em {
    color: var(--accent);
    font-style: normal;
    font-size: 1.5rem
}

.about-metric-label {
    font-size: .72rem;
    color: var(--muted);
    margin-top: 6px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 500
}

.about-metric-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1)
}

.about-metric:hover .about-metric-hover-line {
    transform: scaleX(1)
}

.about-body {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
    margin-top: 0
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.about-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: all .3s;
    cursor: none;
    position: relative;
    overflow: hidden
}

.about-feature-row:after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--pill-bg);
    border-radius: 14px;
    opacity: 0;
    transition: opacity .3s;
    z-index: 0
}

.about-feature-row:hover:after {
    opacity: 1
}

.about-feature-row:hover {
    border-color: #ff3c3c33;
    transform: translate(5px)
}

.about-feature-num {
    font-family: Syne, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: .12em;
    min-width: 20px;
    padding-top: 12px;
    position: relative;
    z-index: 1
}

.about-feature-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all .3s;
    position: relative;
    z-index: 1
}

.about-feature-row:hover .about-feature-icon-wrap {
    border-color: var(--accent);
    background: #ff3c3c14;
    transform: rotate(-6deg) scale(1.1)
}

.about-feature-body {
    position: relative;
    z-index: 1
}

.about-feature-title {
    font-family: Syne, sans-serif;
    font-size: .97rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 5px
}

.about-feature-desc {
    font-size: .81rem;
    color: var(--muted);
    line-height: 1.65
}

.about-feature-tag {
    display: inline-block;
    margin-top: 8px;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--pill-bg);
    padding: 3px 10px;
    border-radius: 50px
}

.about-dashboard {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: sticky;
    top: 90px;
    align-self: start
}

.about-dash-head {
    padding: 20px 22px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.about-dash-headtitle {
    font-family: Syne, sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted)
}

.about-dash-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .68rem;
    color: #4ade80;
    font-weight: 700;
    letter-spacing: .05em
}

.about-dash-live:before {
    content: "";
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 6px #4ade8099;
    animation: blink 2s infinite
}

.about-skills {
    padding: 20px 22px;
    border-bottom: 1px solid var(--border)
}

.about-skill {
    margin-bottom: 16px
}

.about-skill:last-child {
    margin-bottom: 0
}

.about-skill-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px
}

.about-skill-name {
    font-size: .79rem;
    font-weight: 600;
    color: var(--text)
}

.about-skill-pct {
    font-size: .71rem;
    font-weight: 800;
    color: var(--accent);
    font-family: Syne, sans-serif
}

.about-skill-track {
    height: 5px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden
}

.about-skill-fill {
    height: 100%;
    border-radius: 3px;
    width: 0;
    transition: width 1.6s cubic-bezier(.34, 1.2, .64, 1)
}

.about-skill-fill.loaded {
    width: var(--fw)
}

.sf-red {
    background: linear-gradient(90deg, var(--accent), #ff7b7b)
}

.sf-orange {
    background: linear-gradient(90deg, var(--accent2), #ffd166)
}

.sf-green {
    background: linear-gradient(90deg, #4ade80, #22d3a0)
}

.sf-blue {
    background: linear-gradient(90deg, #60a5fa, #a78bfa)
}

.about-minicards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border)
}

.about-minicard {
    padding: 18px 20px;
    transition: background .25s;
    cursor: none
}

.about-minicard:hover {
    background: var(--pill-bg)
}

.about-minicard:first-child {
    border-right: 1px solid var(--border)
}

.about-minicard:nth-child(3) {
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border)
}

.about-minicard:nth-child(4) {
    border-top: 1px solid var(--border)
}

.about-minicard-icon {
    font-size: 1rem;
    margin-bottom: 8px;
    display: block
}

.about-minicard-val {
    font-family: Syne, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.04em;
    line-height: 1
}

.about-minicard-val em {
    color: var(--accent);
    font-style: normal
}

.about-minicard-label {
    font-size: .69rem;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: .04em
}

.about-badges {
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.about-badge-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 600;
    color: var(--muted);
    transition: all .25s;
    cursor: none
}

.about-badge-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--pill-bg)
}

@media(max-width:1100px) {
    .about-top {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .about-metrics {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-metrics .about-metric:nth-child(2) {
        border-right: none
    }

    .about-metrics .about-metric:nth-child(3) {
        border-top: 1px solid var(--border)
    }

    .about-metrics .about-metric:nth-child(4) {
        border-top: 1px solid var(--border);
        border-right: none
    }

    .about-body {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .about-dashboard {
        position: static
    }

    .about-minicard:nth-child(n) {
        border: none;
        border-right: 1px solid var(--border)
    }

    .about-minicard:last-child {
        border-right: none
    }
}

@media(max-width:768px) {
    .about-metrics {
        grid-template-columns: 1fr 1fr
    }

    .about-metric {
        padding: 22px 18px
    }

    .about-metric-num {
        font-size: 1.6rem
    }

    .about-minicards {
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }

    .about-minicard:nth-child(n) {
        border: none !important
    }

    .about-minicard:first-child {
        border-right: 1px solid var(--border) !important
    }

    .about-minicard:nth-child(3) {
        border-top: 1px solid var(--border) !important;
        border-right: 1px solid var(--border) !important
    }

    .about-minicard:nth-child(4) {
        border-top: 1px solid var(--border) !important
    }

    @media(max-width:540px) {
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px
        }

        .about-feature-row {
            padding: 12px 10px
        }

        .about-feature-desc,
        .about-feature-num {
            display: none
        }

        .about-feature-title {
            font-size: .85rem;
            margin-bottom: 4px
        }

        .about-feature-icon-wrap {
            width: 32px;
            height: 32px;
            font-size: .9rem
        }

        .about-feature-tag {
            font-size: .6rem;
            padding: 2px 8px
        }
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
        margin-top: 40px;
        padding-top: 28px
    }
}

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

.service-card {
    background: var(--surface);
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    overflow: hidden;
    text-align: center
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #ff3c3c59;
    box-shadow: var(--card-shadow)
}

.service-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.service-card:hover:before {
    transform: scaleX(1)
}

.service-card:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .03), transparent);
    transform: skew(-15deg);
    transition: left .6s
}

.service-card:hover:after {
    left: 130%
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--pill-bg);
    border: 1px solid rgba(255, 60, 60, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
    transition: transform .3s
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg)
}

.service-name {
    font-family: Syne, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 10px
}

.service-desc {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.65
}

.service-link {
    display: inline-block;
    margin-top: 18px;
    font-size: .82rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s
}

.service-link:hover {
    color: var(--text)
}

.how-section {
    background: var(--surface);
    position: relative;
    overflow: hidden
}

.how-section:before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 60, 60, .05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none
}

.how-section:after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 0, .04) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none
}

.steps-wrapper {
    margin-top: 64px;
    position: relative
}

.steps-line {
    position: absolute;
    top: 52px;
    left: calc(12.5% + 30px);
    right: calc(12.5% + 30px);
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(255, 60, 60, .3) 0, rgba(255, 60, 60, .3) 8px, transparent 8px, transparent 16px);
    z-index: 0
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1
}

.step {
    padding: 28px 24px 32px;
    text-align: center;
    position: relative;
    cursor: none
}

.step-bubble {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1)
}

.step-bubble-inner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface2);
    border: 1px solid rgba(255, 60, 60, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s
}

.step-num-label {
    font-family: Syne, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent)
}

.step:hover .step-bubble {
    border-color: var(--accent);
    box-shadow: 0 0 0 8px #ff3c3c0f, 0 0 30px #ff3c3c26;
    transform: scale(1.08)
}

.step:hover .step-bubble-inner {
    background: #ff3c3c1a;
    border-color: #ff3c3c4d
}

.step-icon {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 20px;
    transition: transform .3s
}

.step:hover .step-icon {
    transform: scale(1.2) rotate(-5deg)
}

.step-title {
    font-family: Syne, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -.02em
}

.step-desc {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.65
}

.step-tag {
    display: inline-block;
    margin-top: 12px;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--pill-bg);
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 60, 60, .15)
}

.how-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap
}

.how-stat {
    text-align: center
}

.how-stat-val {
    font-family: Syne, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -.04em
}

.how-stat-label {
    font-size: .75rem;
    color: var(--muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 3px
}

.how-divider {
    width: 1px;
    height: 40px;
    background: var(--border)
}

@media(max-width:900px) {
    .steps-line {
        display: none
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px
    }

    .step {
        padding: 24px 16px
    }
}

@media(max-width:540px) {
    .steps {
        grid-template-columns: 1fr
    }

    .how-bottom {
        gap: 24px
    }

    .how-divider {
        width: 40px;
        height: 1px
    }
}

.projects-section {
    background: var(--bg)
}

.project-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0 32px
}

.pf-btn {
    padding: 9px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    font-size: .82rem;
    color: var(--muted);
    cursor: none;
    transition: all .25s;
    font-weight: 500;
    font-family: DM Sans, sans-serif
}

.pf-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--pill-bg)
}

.pf-btn.active {
    border-color: var(--accent);
    color: #fff;
    background: var(--accent);
    box-shadow: 0 6px 20px #ff3c3c59;
    transform: scale(1.05)
}

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

.project-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow)
}

.project-card.hidden {
    display: none
}

.project-thumb {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: var(--surface2)
}

.project-thumb-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .5s
}

.project-card:hover .project-thumb-inner {
    transform: scale(1.06)
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    opacity: 0;
    transition: opacity .4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    padding: 20px;
    text-align: center;
    transform: translateY(20px);
    transition: transform .4s ease;
    width: 100%;
}

.project-card:hover .project-overlay-content {
    transform: translateY(0);
}

.project-tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.tech-tag {
    background: rgba(255, 60, 60, 0.2);
    border: 1px solid rgba(255, 60, 60, 0.4);
    color: #ff3c3c;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    letter-spacing: 0.5px;
}

.project-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
    font-family: "DM Sans", sans-serif;
}

.project-overlay-btn {
    padding: 10px 24px;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s;
    border: none;
    cursor: none;
    font-family: DM Sans, sans-serif
}

.project-overlay-btn:hover {
    transform: scale(1.05)
}

.project-info {
    padding: 20px
}

.project-name {
    font-family: Syne, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 4px
}

.project-sub {
    font-size: .78rem;
    color: var(--muted)
}

.project-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #000000bf;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: .68rem;
    font-weight: 700;
    color: #fff;
    z-index: 2
}

.project-filters {
    position: relative
}

#filterIndicator {
    position: absolute;
    background: var(--accent);
    border-radius: 50px;
    transition: left .35s cubic-bezier(.34, 1.56, .64, 1), width .35s cubic-bezier(.34, 1.56, .64, 1);
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    box-shadow: 0 6px 20px #ff3c3c59
}

.pf-btn {
    position: relative;
    z-index: 1
}

[data-theme=light] .project-badge {
    background: #ffffffd9;
    color: #111
}

.coming-soon-badge {
    background: #ff8c0033;
    border-color: #ff8c0066;
    color: var(--accent2)
}

.tech-section {
    background: var(--surface);
    position: relative;
    overflow: hidden
}

.tech-section:before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 60, 60, .04) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none
}

.tm-outer {
    margin-top: 52px;
    position: relative;
    overflow: hidden;
    padding: 10px 0
}

.tm-fade-left,
.tm-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: normal
}

.tm-fade-left {
    left: 0;
    background: linear-gradient(90deg, var(--surface), transparent)
}

.tm-fade-right {
    right: 0;
    background: linear-gradient(270deg, var(--surface), transparent)
}

.tm-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: tmScroll 28s linear infinite;
    padding: 10px 0
}

.tm-outer:hover .tm-track {
    animation-play-state: paused
}

@keyframes tmScroll {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-50%)
    }
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1.5px solid var(--border);
    border-radius: 60px;
    background: var(--surface2);
    transition: border-color .25s, background .25s, box-shadow .25s, transform .25s;
    white-space: nowrap;
    flex-shrink: 0;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
    z-index: 1
}

.tech-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    background: var(--pill-bg);
    box-shadow: 0 8px 24px #ff3c3c1f;
    z-index: 10
}

.tech-icon {
    font-size: 1.3rem;
    pointer-events: none
}

.tech-name {
    font-family: Syne, sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: var(--text);
    pointer-events: none
}

.tech-hint {
    text-align: center;
    margin-top: 20px;
    font-size: .75rem;
    color: var(--muted);
    letter-spacing: .04em
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 60px
}

.creator-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s;
    transform-style: preserve-3d
}

.creator-card:hover {
    box-shadow: var(--card-shadow)
}

.creator-thumb {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.creator-thumb svg {
    width: 100%;
    height: 100%;
    transition: transform .5s
}

.creator-card:hover .creator-thumb svg {
    transform: scale(1.05)
}

.creator-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
    opacity: 0;
    transition: opacity .3s
}

.creator-card:hover .creator-overlay {
    opacity: 1
}

.creator-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #000000bf;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    color: #fff;
    z-index: 2
}

[data-theme=light] .creator-badge {
    background: #ffffffd9;
    color: #111
}

.creator-info {
    padding: 20px
}

.creator-name {
    font-family: Syne, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.02em
}

.creator-role {
    font-size: .8rem;
    color: var(--muted);
    margin-top: 4px
}

.creator-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border)
}

.creator-rating {
    font-size: .82rem
}

.creator-rating span {
    color: #ffb400
}

.creator-price {
    font-size: .82rem;
    color: var(--accent);
    font-weight: 600
}

.testi-section {
    background: var(--surface)
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 60px
}

.testi-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.testi-card:before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 8rem;
    font-family: Syne, sans-serif;
    color: var(--accent);
    opacity: .05;
    pointer-events: none
}

.testi-card:hover {
    border-color: #ff3c3c4d;
    transform: translateY(-4px)
}

.testi-stars {
    color: #ffb400;
    font-size: .9rem;
    margin-bottom: 16px;
    letter-spacing: 2px
}

.testi-text {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.7;
    font-style: italic
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border)
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    font-family: Syne, sans-serif;
    flex-shrink: 0
}

.testi-name {
    font-size: .85rem;
    font-weight: 600
}

.testi-brand {
    font-size: .74rem;
    color: var(--muted)
}

.achievements-section {
    background: var(--bg)
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px
}

.ach-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    overflow: hidden
}

.ach-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 60, 60, .04), transparent);
    opacity: 0;
    transition: opacity .3s
}

.ach-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px #ff3c3c1a
}

.ach-card:hover:before {
    opacity: 1
}

.ach-num {
    font-family: Syne, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -.04em;
    margin-bottom: 8px
}

.ach-label {
    font-size: .85rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: .02em
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 60px
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px #00000026
}

.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(160deg, rgba(255, 60, 60, .08), var(--surface))
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translate(-50%);
    background: var(--accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap
}

.pricing-plan {
    font-size: .78rem;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600
}

.pricing-price {
    font-family: Syne, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -.04em;
    margin: 14px 0
}

.pricing-price sub {
    font-size: .95rem;
    font-weight: 400;
    color: var(--muted)
}

.pricing-desc {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px
}

.pricing-features {
    list-style: none
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .83rem;
    color: var(--muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--border)
}

.pricing-features li:last-child {
    border-bottom: none
}

.check {
    color: var(--accent)
}

.xmark {
    color: #555
}

.pricing-btn {
    width: 100%;
    margin-top: 24px;
    padding: 13px;
    border-radius: 50px;
    font-size: .88rem;
    font-family: DM Sans, sans-serif;
    font-weight: 600;
    cursor: none;
    transition: all .25s;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text)
}

.pricing-btn.cta {
    background: var(--accent);
    color: #fff;
    border: none
}

.pricing-btn:hover {
    opacity: .85;
    transform: translateY(-1px)
}

.pricing-note {
    text-align: center;
    font-size: .78rem;
    color: var(--muted);
    margin-top: 36px;
    line-height: 1.6
}

.pricing-note strong {
    color: var(--text)
}

.faq-section {
    background: var(--surface);
    position: relative;
    overflow: hidden
}

.faq-section:before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 60, 60, .05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none
}

.faq-section:after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 0, .04) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none
}

.faq-list {
    margin-top: 52px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1
}

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: 20px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color .35s, box-shadow .35s, transform .3s;
    background: var(--bg);
    position: relative
}

.faq-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent), var(--accent2));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
    border-radius: 0 0 0 20px
}

.faq-item.open {
    border-color: #ff3c3c66;
    box-shadow: 0 8px 32px #ff3c3c14;
    transform: translate(4px)
}

.faq-item.open:before {
    transform: scaleY(1)
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px 24px 36px;
    cursor: none;
    background: transparent;
    transition: background .25s;
    gap: 20px
}

.faq-item.open .faq-question {
    background: #ff3c3c08
}

.faq-q-left {
    display: flex;
    align-items: center;
    gap: 16px
}

.faq-q-num {
    font-family: Syne, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #ff3c3c66;
    letter-spacing: .12em;
    min-width: 24px;
    transition: color .3s
}

.faq-item.open .faq-q-num {
    color: var(--accent)
}

.faq-q-text {
    font-family: Syne, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.02em;
    line-height: 1.3
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--muted);
    transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
    flex-shrink: 0;
    font-weight: 300
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--accent);
    color: var(--accent);
    background: var(--pill-bg);
    box-shadow: 0 0 16px #ff3c3c33
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4, 0, .2, 1)
}

.faq-item.open .faq-answer {
    max-height: 500px
}

.faq-answer-inner {
    padding: 20px 32px 28px 76px;
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.85;
    border-top: 1px solid var(--border)
}

.faq-answer-inner strong {
    color: var(--text);
    font-weight: 700
}

.newsletter-section {
    background: var(--bg)
}

.newsletter-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 36px;
    border-radius: 60px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    background: var(--surface);
    box-shadow: 0 4px 24px #00000014;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto
}

.newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text);
    padding: 16px 24px;
    font-size: .92rem;
    font-family: DM Sans, sans-serif;
    outline: none
}

.newsletter-input::placeholder {
    color: var(--muted)
}

.newsletter-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: .88rem;
    font-weight: 700;
    font-family: DM Sans, sans-serif;
    cursor: none;
    transition: all .25s;
    white-space: nowrap;
    border-radius: 0 60px 60px 0
}

.newsletter-btn:hover {
    background: #e02020;
    box-shadow: 0 0 20px #ff3c3c4d
}

.newsletter-privacy {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 14px
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 52px
}

.nb-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all .3s
}

.nb-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px)
}

.nb-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pill-bg);
    border: 1px solid rgba(255, 60, 60, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px
}

.nb-title {
    font-family: Syne, sans-serif;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 6px
}

.nb-desc {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.6
}

.newsletter-success {
    display: none;
    color: var(--accent);
    font-weight: 600;
    margin-top: 16px;
    font-size: .9rem
}

.newsletter-feedback {
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 600;
    display: none;
    animation: slideUp .3s ease
}

.newsletter-feedback.success {
    display: block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff
}

.newsletter-feedback.error {
    display: block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff
}

.newsletter-feedback.loading {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff
}

.newsletter-feedback .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .8s linear infinite
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

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

.cta-section {
    padding: 80px 48px;
    background: var(--bg)
}

.cta-inner {
    background: var(--cta-bg);
    border: 1px solid rgba(255, 60, 60, .25);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden
}

.cta-inner:before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 60, 60, .12), transparent);
    top: -100px;
    right: -100px;
    border-radius: 50%
}

.cta-title {
    font-family: Syne, sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    max-width: 480px;
    position: relative;
    z-index: 1
}

.cta-title span {
    color: var(--accent)
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

.contact-section {
    background: var(--bg);
    padding: 96px 48px;
    position: relative;
    overflow: hidden
}

.contact-section:before {
    content: "";
    position: absolute;
    top: -160px;
    left: -160px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 60, 60, .06), transparent 65%);
    border-radius: 50%;
    pointer-events: none
}

.contact-section:after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 140, 0, .04), transparent 65%);
    border-radius: 50%;
    pointer-events: none
}

.contact-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.contact-head-left .section-label {
    margin-bottom: 10px
}

.contact-head-title {
    font-family: Syne, sans-serif;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.08
}

.contact-head-title em {
    font-style: normal;
    color: var(--accent)
}

.contact-head-right {
    font-size: .88rem;
    color: var(--muted);
    max-width: 340px;
    line-height: 1.7;
    text-align: right
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all .3s;
    cursor: none;
    text-decoration: none
}

.contact-card:hover {
    border-color: var(--accent);
    transform: translate(5px);
    background: var(--pill-bg)
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--pill-bg);
    border: 1px solid rgba(255, 60, 60, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform .3s
}

.contact-card:hover .contact-card-icon {
    transform: rotate(-6deg) scale(1.1)
}

.contact-card-label {
    font-size: .7rem;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px
}

.contact-card-val {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text)
}

.contact-map {
    width: 100%;
    height: 390px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 10px
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.contact-form-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 44px;
    position: relative;
    overflow: hidden
}

.contact-form-wrap:before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 60, 60, .06), transparent 65%);
    border-radius: 50%;
    pointer-events: none
}

.cf-label {
    font-size: .7rem;
    color: var(--accent);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px
}

.cf-title {
    font-family: Syne, sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 6px
}

.cf-sub {
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.6
}

.cf-service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px
}

.cf-chip {
    padding: 7px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--surface2);
    font-size: .75rem;
    font-weight: 600;
    color: var(--muted);
    cursor: none;
    transition: all .2s;
    font-family: DM Sans, sans-serif
}

.cf-chip:hover,
.cf-chip.active {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--pill-bg)
}

.captcha-box {
    margin-bottom: 20px;
    transform: translateZ(0);
    will-change: transform
}

.captcha-box .cf-turnstile {
    transform: translateZ(0)
}

.captcha-box .cf-turnstile iframe {
    transform: none !important;
    animation: none !important
}

.cf-chip-label {
    font-size: .68rem;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px
}

.cf-response-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: #4ade8014;
    border: 1px solid rgba(74, 222, 128, .2);
    border-radius: 50px;
    font-size: .75rem;
    color: #4ade80;
    font-weight: 600;
    margin-bottom: 20px
}

.cf-response-badge:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 6px #4ade8080;
    animation: blink 2s infinite
}

@media(max-width:1100px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .contact-head-right {
        text-align: left
    }

    .contact-head {
        align-items: flex-start
    }
}

@media(max-width:768px) {
    .contact-section {
        padding: 60px 20px
    }

    .contact-form-wrap {
        padding: 28px 20px
    }

    .contact-head-right {
        display: none
    }
}

footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 60px 48px 0
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border)
}

.footer-brand .logo {
    display: block;
    margin-bottom: 16px
}

.footer-tagline {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 260px
}

.footer-col-title {
    font-family: Syne, sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px
}

.footer-links a {
    font-size: .83rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: .02em;
    font-weight: 500;
    position: relative;
    transition: color .2s;
    display: inline-block
}

.footer-links a:after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .25s
}

.footer-links a:hover {
    color: var(--text)
}

.footer-links a:hover:after {
    transform: scaleX(1)
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    color: var(--muted);
    text-decoration: none;
    position: relative;
    overflow: hidden
}

.social-btn svg {
    position: relative;
    z-index: 1;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1)
}

.social-btn:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent);
    transform: scale(0);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
    z-index: 0
}

.social-btn:hover {
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 28px #ff3c3c59
}

.social-btn:hover:before {
    transform: scale(1)
}

.social-btn:hover svg {
    transform: scale(1.15)
}

[data-theme=light] .social-btn {
    background: var(--surface);
    border-color: var(--border);
    color: var(--muted)
}

[data-theme=light] .social-btn:hover {
    color: #fff;
    border-color: var(--accent)
}

@media(hover:none) {
    .social-btn {
        cursor: pointer
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    flex-wrap: wrap;
    gap: 16px
}

.footer-copy {
    font-size: .78rem;
    color: var(--muted)
}

.footer-legal {
    display: flex;
    gap: 20px
}

.footer-legal a {
    font-size: .78rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s
}

.footer-legal a:hover {
    color: var(--accent)
}

.wa-float {
    position: fixed;
    bottom: 96px;
    right: 22px;
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transform: scale(.7) translateY(20px);
    transition: opacity .4s ease, transform .4s ease
}

.wa-float.wa-visible {
    opacity: 1;
    pointer-events: all;
    transform: scale(1) translateY(0)
}

.wa-btn {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px #25d36666;
    animation: waPulse 2.2s infinite;
    transition: transform .3s
}

.wa-btn:hover {
    transform: scale(1.12)
}

.wa-btn svg {
    width: 26px;
    height: 26px;
    fill: #fff
}

@keyframes waPulse {
    0% {
        box-shadow: 0 4px 20px #25d36666
    }

    50% {
        box-shadow: 0 4px 20px #25d366cc, 0 0 0 10px #25d36614
    }

    to {
        box-shadow: 0 4px 20px #25d36666
    }
}

.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 22px;
    z-index: 300;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    opacity: 0;
    pointer-events: none;
    transition: all .35s;
    box-shadow: 0 4px 16px #ff3c3c59
}

.scroll-top.show {
    opacity: 1;
    pointer-events: all
}

.scroll-top:hover {
    transform: translateY(-3px);
    background: #e02020
}

.legal-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 400;
    overflow-y: auto;
    padding: 40px 20px 80px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start
}

.legal-overlay.show {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: .85rem;
    cursor: none;
    margin-bottom: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 50px;
    transition: all .25s;
    text-decoration: none
}

.legal-back:hover {
    color: var(--accent);
    border-color: var(--accent)
}

.legal-content {
    max-width: 800px;
    margin: 0 auto
}

.legal-content h2 {
    font-family: Syne, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -.03em
}

.legal-content h3 {
    font-family: Syne, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 28px 0 10px
}

.legal-content p,
.legal-content li {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 8px
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 12px
}

.legal-last-updated {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 32px
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(24px)
    }

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

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-16px)
    }

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

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-left {
    opacity: 0;
    transform: translate(-40px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal-left.visible {
    opacity: 1;
    transform: translate(0)
}

.reveal-right {
    opacity: 0;
    transform: translate(40px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal-right.visible {
    opacity: 1;
    transform: translate(0)
}

.reveal-scale {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .75s ease, transform .75s ease
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1)
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 2px
}

@media(max-width:1100px) {

    .projects-grid,
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }
}

@media(max-width:900px) {

    .services-grid,
    .creators-grid,
    .testi-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .newsletter-benefits {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    nav {
        padding: 14px 20px
    }

    .nav-links,
    .nav-right .btn-ghost,
    .nav-right .btn-primary {
        display: none
    }

    .hamburger {
        display: flex
    }

    .mobile-nav {
        display: block
    }

    body {
        cursor: auto
    }

    .cursor,
    .cursor-ring {
        display: none
    }

    section {
        padding: 60px 20px
    }

    .hero {
        padding: 110px 20px 60px
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.1
    }

    .hero-title .line2 {
        font-size: clamp(1.2rem, 5vw, 2rem)
    }

    .hero-title .accent-word {
        font-size: clamp(1rem, 4vw, 1.5rem)
    }

    .services-grid,
    .creators-grid,
    .testi-grid,
    .pricing-grid,
    .projects-grid {
        grid-template-columns: 1fr
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .newsletter-benefits,
    .footer-top {
        grid-template-columns: 1fr
    }

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

    .cta-section {
        padding: 40px 20px
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 48px 24px
    }

    .cta-inner:before {
        display: none
    }

    .cta-actions {
        justify-content: center
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .modal-box {
        padding: 32px 20px
    }

    .legal-overlay {
        padding: 80px 20px
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 16px
    }

    .newsletter-btn {
        border-radius: 0 0 12px 12px
    }

    .newsletter-input {
        padding: 14px 20px
    }

    .tm-fade-left,
    .tm-fade-right {
        width: 60px
    }
}

@media(max-width:480px) {
    .hero-title {
        font-size: clamp(2.4rem, 11vw, 3.2rem);
        word-wrap: break-word;
        overflow-wrap: anywhere
    }

    .hero-title .line2 {
        font-size: clamp(1.8rem, 8vw, 60px) !important
    }

    .hero-title .accent-word {
        display: block;
        font-size: clamp(1.4rem, 6vw, 2rem);
        margin-top: 8px
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
        margin-top: 40px;
        padding-top: 28px
    }

    .achievements-grid {
        grid-template-columns: 1fr 1fr
    }

    .btn-large,
    .btn-outline-large {
        padding: 14px 24px;
        font-size: .95rem
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px
    }
}

.hero {
    display: grid;
    grid-template-columns: 1fr 460px;
    align-items: center;
    gap: 0;
    min-height: 100vh;
    padding: 100px 48px 80px;
    position: relative;
    overflow: hidden
}

.hero-glow,
.hero-glow2,
.hero-particles {
    position: absolute;
    pointer-events: none
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2
}

.hero-visual {
    position: relative;
    width: 460px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: fadeUp 1s .4s ease both
}

.hv-canvas {
    position: absolute;
    inset: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    pointer-events: none;
    opacity: .6
}

.hv-ambient {
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 60, 60, .22) 0%, rgba(255, 140, 0, .06) 50%, transparent 70%);
    border-radius: 50%;
    animation: gPulse 4s ease-in-out infinite;
    pointer-events: none
}

@keyframes gPulse {

    0%,
    to {
        transform: scale(1);
        opacity: .8
    }

    50% {
        transform: scale(1.15);
        opacity: 1
    }
}

.hv-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none
}

.hv-ring {
    position: absolute;
    border-radius: 50%
}

.hv-ring1 {
    width: 200px;
    height: 200px;
    border: 1.5px solid rgba(255, 60, 60, .25);
    animation: spinRing 14s linear infinite;
    box-shadow: 0 0 20px #ff3c3c14 inset
}

.hv-ring2 {
    width: 310px;
    height: 310px;
    border: 1px solid rgba(255, 140, 0, .15);
    animation: spinRing 24s linear infinite reverse
}

.hv-ring3 {
    width: 410px;
    height: 410px;
    border: 1px dashed rgba(255, 60, 60, .08);
    animation: spinRing 38s linear infinite
}

.hv-ring-dot {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translate(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px #ff3c3ce6, 0 0 20px #ff3c3c80
}

.hv-ring-dot2 {
    background: #ff8c00;
    box-shadow: 0 0 10px #ff8c00e6, 0 0 20px #ff8c0080;
    top: auto;
    bottom: -5px
}

@keyframes spinRing {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.hv-core {
    position: absolute;
    z-index: 5;
    animation: floatCore 4.5s ease-in-out infinite
}

@keyframes floatCore {

    0%,
    to {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-16px) scale(1.03)
    }
}

.hv-core-inner {
    width: 136px;
    height: 136px;
    border-radius: 34px;
    background: var(--surface);
    border: 1.5px solid rgba(255, 60, 60, .35);
    box-shadow: 0 0 0 6px #ff3c3c0d, 0 0 0 14px #ff3c3c06, 0 0 50px #ff3c3c40, 0 24px 70px #0000008c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden
}

.hv-core-inner:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .07), transparent);
    animation: shimmer 4s ease-in-out infinite
}

@keyframes shimmer {
    0% {
        left: -60%
    }

    to {
        left: 160%
    }
}

.hv-core-glow {
    position: absolute;
    bottom: -20px;
    width: 80px;
    height: 40px;
    background: #ff3c3c4d;
    filter: blur(18px);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite
}

@keyframes glowPulse {

    0%,
    to {
        opacity: .5;
        transform: scaleX(1)
    }

    50% {
        opacity: 1;
        transform: scaleX(1.3)
    }
}

.hv-core-label {
    font-family: Syne, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    gap: 0;
}

.hv-label-code {
    color: #fff;
}

[data-theme="light"] .hv-label-code {
    color: #111;
}

.hv-label-spidey {
    color: #ff3c3c;
    text-shadow: 0 0 15px rgba(255, 60, 60, 0.5);
}

.hv-core-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.dark-icon {
    display: block;
}

.light-icon {
    display: none;
}

[data-theme="light"] .dark-icon {
    display: none;
}

[data-theme="light"] .light-icon {
    display: block;
}

.hv-orbit-wrap {
    position: absolute;
    width: 0;
    height: 0;
    z-index: 6
}

.hv-orb-dot {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--surface);
    border: 1.5px solid rgba(255, 60, 60, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 24px #00000073, 0 0 12px #ff3c3c1a;
    transform: translate(-50%, -50%);
    transition: box-shadow .3s
}

.hv-orb-dot:hover {
    box-shadow: 0 6px 24px #00000073, 0 0 20px #ff3c3c66
}

.hv-orb-dot-sm {
    width: 38px;
    height: 38px;
    font-size: .9rem
}

.hv-ow1 {
    animation: orbit1 7s linear infinite
}

.hv-ow2 {
    animation: orbit2 9s linear infinite
}

.hv-ow3 {
    animation: orbit3 11s linear infinite
}

.hv-ow4 {
    animation: orbit4 13s linear infinite
}

@keyframes orbit1 {
    0% {
        transform: rotate(0) translate(105px)
    }

    to {
        transform: rotate(360deg) translate(105px)
    }
}

@keyframes orbit2 {
    0% {
        transform: rotate(180deg) translate(155px)
    }

    to {
        transform: rotate(540deg) translate(155px)
    }
}

@keyframes orbit3 {
    0% {
        transform: rotate(60deg) translate(105px)
    }

    to {
        transform: rotate(420deg) translate(105px)
    }
}

@keyframes orbit4 {
    0% {
        transform: rotate(270deg) translate(155px)
    }

    to {
        transform: rotate(630deg) translate(155px)
    }
}

.hv-card {
    position: absolute;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: 0 20px 55px #00000080, 0 0 0 1px #ff3c3c0f;
    z-index: 10;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s;
    overflow: hidden
}

.hv-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #ff8c00, transparent);
    opacity: 0;
    transition: opacity .3s
}

.hv-card:hover:before {
    opacity: 1
}

.hv-card:hover {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: 0 28px 70px #0009, 0 0 0 1px #ff3c3c33, 0 0 30px #ff3c3c14 !important
}

.hv-card-tl {
    top: 18px;
    left: 0;
    width: 212px;
    animation: floatTL 5s ease-in-out infinite
}

.hv-card-tr {
    top: 18px;
    right: 0;
    width: 162px;
    animation: floatTR 6s ease-in-out infinite
}

.hv-card-bl {
    bottom: 50px;
    left: 0;
    width: 204px;
    animation: floatBL 5.5s ease-in-out infinite
}

.hv-card-br {
    bottom: 50px;
    right: 0;
    width: 158px;
    animation: floatBR 7s ease-in-out infinite
}

@keyframes floatTL {

    0%,
    to {
        transform: translateY(0) rotate(-.8deg)
    }

    50% {
        transform: translateY(-12px) rotate(.2deg)
    }
}

@keyframes floatTR {

    0%,
    to {
        transform: translateY(0) rotate(.8deg)
    }

    50% {
        transform: translateY(-16px) rotate(-.2deg)
    }
}

@keyframes floatBL {

    0%,
    to {
        transform: translateY(0) rotate(-.5deg)
    }

    50% {
        transform: translateY(-9px) rotate(.5deg)
    }
}

@keyframes floatBR {

    0%,
    to {
        transform: translateY(0) rotate(1.2deg)
    }

    50% {
        transform: translateY(-13px) rotate(-.3deg)
    }
}

.hv-card-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px
}

.hv-live-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80cc;
    animation: blink 1.8s infinite;
    flex-shrink: 0
}

.hv-card-eyebrow {
    font-size: .62rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em
}

.hv-live-badge {
    margin-left: auto;
    font-size: .6rem;
    font-weight: 700;
    color: #4ade80;
    background: #4ade801a;
    border: 1px solid rgba(74, 222, 128, .25);
    padding: 2px 8px;
    border-radius: 50px
}

.hv-card-name {
    font-family: Syne, sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -.02em
}

.hv-bar-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px
}

.hv-bar-lbl {
    font-size: .62rem;
    color: var(--muted);
    min-width: 52px
}

.hv-bar-track {
    flex: 1;
    height: 5px;
    background: #ffffff0d;
    border-radius: 3px;
    overflow: hidden
}

.hv-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 3px;
    transition: width 2.4s cubic-bezier(.34, 1.2, .64, 1);
    position: relative
}

.hv-bar-fill:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4));
    border-radius: 3px;
    animation: barShimmer 2s ease-in-out infinite
}

@keyframes barShimmer {

    0%,
    to {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

.hv-bar-fill.loaded {
    width: var(--w)
}

.hv-bf-red {
    background: linear-gradient(90deg, var(--accent), #ff8c00)
}

.hv-bf-grn {
    background: linear-gradient(90deg, #4ade80, #22d3a0)
}

.hv-bar-pct {
    font-size: .62rem;
    font-weight: 800;
    font-family: Syne, sans-serif;
    min-width: 28px;
    text-align: right
}

.hv-rating-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px
}

.hv-rating-icon {
    font-size: 1.3rem
}

.hv-rating-val {
    font-family: Syne, sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.04em
}

.hv-rating-stars {
    color: #ffb400;
    font-size: .72rem;
    letter-spacing: 2px;
    margin-bottom: 2px
}

.hv-rating-lbl {
    font-size: .65rem;
    color: var(--muted)
}

.hv-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #4ade801a;
    border: 1px solid rgba(74, 222, 128, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0
}

.hv-typing-wrap {
    display: flex;
    align-items: center;
    gap: 1px;
    font-size: .68rem;
    color: #4ade80;
    font-weight: 600;
    min-height: 1.2em
}

.hv-cursor {
    animation: blink .9s infinite;
    color: #4ade80;
    font-weight: 300
}

.hv-mini-stat {
    margin-bottom: 10px
}

.hv-mini-num {
    font-family: Syne, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.04em;
    line-height: 1
}

.hv-mini-lbl {
    font-size: .65rem;
    color: var(--muted);
    margin-top: 3px
}

.hv-avatar-row {
    display: flex;
    gap: 4px;
    align-items: center
}

.hv-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 800;
    color: #fff;
    font-family: Syne, sans-serif;
    border: 2px solid var(--surface);
    transition: transform .2s
}

.hv-av:hover {
    transform: translateY(-3px) scale(1.1)
}

.hv-av-more {
    background: var(--surface2);
    border-color: var(--border);
    color: var(--muted);
    font-size: .7rem
}

.hv-pills {
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10
}

.hv-pill {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 13px;
    font-size: .7rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    box-shadow: 0 4px 14px #0000004d;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    opacity: 0;
    transform: translate(16px);
    animation: pillIn .5s ease forwards;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: default
}

.hv-pill:nth-child(1) {
    animation-delay: 1s
}

.hv-pill:nth-child(2) {
    animation-delay: 1.15s
}

.hv-pill:nth-child(3) {
    animation-delay: 1.3s
}

.hv-pill:nth-child(4) {
    animation-delay: 1.45s
}

@keyframes pillIn {
    to {
        opacity: 1;
        transform: translate(0)
    }
}

.hv-pill:hover {
    border-color: var(--accent);
    color: var(--text);
    background: #ff3c3c14;
    transform: translate(-5px) scale(1.03);
    box-shadow: 0 6px 20px #ff3c3c26
}

[data-theme=light] .hv-card {
    border-color: #00000012;
    box-shadow: 0 16px 48px #0000001a
}

[data-theme=light] .hv-bar-track {
    background: #00000012
}

@media(max-width:1100px) {
    .hero {
        grid-template-columns: 1fr 380px
    }

    .hero-visual {
        width: 380px;
        height: 460px
    }

    .hv-ring3 {
        width: 340px;
        height: 340px
    }

    .hv-pills {
        right: -8px
    }
}

@media(max-width:900px) {
    .hero {
        display: flex;
        flex-direction: column;
        padding: 110px 20px 60px
    }

    .hero-visual {
        display: none
    }
}

.whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transform: scale(.7) translateY(20px);
    transition: opacity .4s ease, transform .4s ease
}

.whatsapp-float.wа-visible {
    opacity: 1;
    pointer-events: all;
    transform: scale(1) translateY(0)
}

@keyframes hvFloat {

    0%,
    to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes hvFloatR {

    0%,
    to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8px)
    }
}

@keyframes hvPulseRing {
    0% {
        box-shadow: 0 0 #ff3c3c66
    }

    70% {
        box-shadow: 0 0 0 18px #ff3c3c00
    }

    to {
        box-shadow: 0 0 #ff3c3c00
    }
}

@keyframes hvShimmer {
    0% {
        background-position: -200% center
    }

    to {
        background-position: 200% center
    }
}

@keyframes hvBlink {

    0%,
    to {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

@keyframes hvLiveDot {

    0%,
    to {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.6)
    }
}

@keyframes hvBarGlow {

    0%,
    to {
        filter: brightness(1)
    }

    50% {
        filter: brightness(1.4) drop-shadow(0 0 4px #ff3c3c)
    }
}

@keyframes hvPillSlide {
    0% {
        opacity: 0;
        transform: translate(20px)
    }

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

@keyframes hvCounterPop {
    0% {
        transform: scale(.7);
        opacity: 0
    }

    70% {
        transform: scale(1.08)
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes hvOrbitPulse {

    0%,
    to {
        box-shadow: 0 0 6px 2px #ff3c3cb3
    }

    50% {
        box-shadow: 0 0 14px 5px #ff8c00cc
    }
}

@keyframes hvScanline {
    0% {
        top: 0%
    }

    to {
        top: 100%
    }
}

.hv-card-tl {
    animation: hvFloat 4s ease-in-out infinite
}

.hv-card-tr {
    animation: hvFloatR 5s ease-in-out infinite .5s
}

.hv-card-bl {
    animation: hvFloat 4.5s ease-in-out infinite 1s
}

.hv-card-br {
    animation: hvFloatR 3.8s ease-in-out infinite 1.5s
}

.hv-card:hover {
    transform: scale(1.045) translateY(-4px) !important;
    box-shadow: 0 12px 40px #ff3c3c40 !important;
    z-index: 10;
    transition: transform .3s ease, box-shadow .3s ease
}

.hv-live-dot {
    animation: hvLiveDot 1.2s ease-in-out infinite !important
}

.hv-bar-fill.loaded {
    animation: hvBarGlow 2.5s ease-in-out infinite .8s !important
}

.hv-rating-num {
    background: linear-gradient(90deg, #ff3c3c, #ff8c00 40%, #fff, #ff8c00 60%, #ff3c3c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hvShimmer 3s linear infinite
}

#hvTyping:after {
    content: "|";
    animation: hvBlink .8s step-end infinite;
    color: #ff3c3c;
    margin-left: 1px
}

.hv-pill {
    animation: hvPillSlide .5s ease forwards;
    opacity: 0
}

.hv-pill:nth-child(1) {
    animation-delay: .3s
}

.hv-pill:nth-child(2) {
    animation-delay: .5s
}

.hv-pill:nth-child(3) {
    animation-delay: .7s
}

.hv-pill:nth-child(4) {
    animation-delay: .9s
}

.hv-orbit-dot {
    animation: hvOrbitPulse 2s ease-in-out infinite !important
}

.hv-count.popped {
    animation: hvCounterPop .5s cubic-bezier(.175, .885, .32, 1.275) forwards
}

.hv-center-card {
    position: relative;
    overflow: hidden
}

.hv-center-card:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 60, 60, .6), transparent);
    animation: hvScanline 3s linear infinite;
    pointer-events: none
}

.hv-center-card .hv-logo-wrap {
    animation: hvPulseRing 2.5s ease-in-out infinite;
    border-radius: 50%
}

[data-theme=dark] .hv-card {
    background: #ffffff0a !important;
    -webkit-backdrop-filter: blur(14px) saturate(1.4) !important;
    backdrop-filter: blur(14px) saturate(1.4) !important;
    border: 1px solid rgba(255, 60, 60, .15) !important
}

.hero-title .accent-word {
    color: var(--accent);
    font-size: clamp(2.8rem, 4vw, 3.2rem);
    display: block;
    white-space: normal
}

@media(max-width:1024px) {
    .hero-title {
        max-width: 100%
    }

    .hero-title .line2 {
        font-size: clamp(1.5rem, 6vw, 3rem)
    }

    .hero-title .accent-word {
        font-size: clamp(1.2rem, 5vw, 2rem)
    }

    .services-grid,
    .creators-grid,
    .testi-grid,
    .pricing-grid,
    .projects-grid,
    .achievements-grid,
    .newsletter-benefits {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .contact-info {
        position: static
    }
}

@media(max-width:768px) {
    nav {
        padding: 16px 20px
    }

    .nav-links,
    .nav-right .btn-ghost,
    .nav-right .btn-primary {
        display: none
    }

    .hamburger {
        display: flex
    }

    .mobile-nav {
        display: block
    }

    body {
        cursor: auto
    }

    .cursor,
    .cursor-ring {
        display: none
    }

    .logo {
        font-size: 1.2rem
    }

    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw
    }

    section {
        padding: 60px 20px
    }

    .hero {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        padding: 110px 20px 60px;
        min-height: auto !important
    }

    .hero-visual {
        display: none !important
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important
    }

    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
        word-wrap: break-word;
        overflow-wrap: break-word
    }

    .hero-sub {
        font-size: .95rem;
        max-width: 100%
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px
    }

    .hero-actions .btn-large,
    .hero-actions .btn-outline-large {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: .95rem
    }

    .hero-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px 16px;
        margin-top: 40px;
        padding-top: 28px
    }

    .hero-stats>div {
        width: 100%
    }

    .stat-num {
        font-size: 1.7rem
    }

    .stat-label {
        font-size: .75rem
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px
    }

    .service-card {
        border-right: none;
        padding: 20px 14px
    }

    .service-name {
        font-size: .9rem
    }

    .service-desc {
        font-size: .75rem;
        line-height: 1.4
    }

    .service-link {
        font-size: .7rem
    }

    .creators-grid,
    .testi-grid,
    .pricing-grid {
        grid-template-columns: 1fr !important
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .newsletter-benefits {
        grid-template-columns: 1fr
    }

    .about-top,
    .about-body {
        grid-template-columns: 1fr !important;
        gap: 24px
    }

    .about-top-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        word-wrap: break-word;
        overflow-wrap: break-word
    }

    .about-cta-row {
        flex-direction: column;
        gap: 16px
    }

    .about-v-divider {
        display: none
    }

    .steps {
        grid-template-columns: repeat(2, 1fr) !important
    }

    .steps-line {
        display: none
    }

    .how-bottom {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px 16px
    }

    .how-divider {
        display: none
    }

    .project-filters {
        gap: 6px
    }

    .pf-btn {
        padding: 7px 14px;
        font-size: .75rem
    }

    .pf-btn.active {
        transform: none;
        box-shadow: 0 4px 12px #ff3c3c40
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center
    }

    .cta-section {
        padding: 40px 20px
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 48px 24px
    }

    .cta-inner:before,
    .cta-inner:after {
        display: none
    }

    .cta-actions {
        justify-content: center;
        flex-wrap: wrap
    }

    .contact-section {
        padding: 60px 20px
    }

    .contact-form-wrap {
        padding: 28px 20px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .modal-box {
        padding: 36px 24px
    }

    .legal-overlay .modal-title {
        font-size: clamp(1.3rem, 5vw, 1.7rem) !important;
        margin-bottom: 4px
    }

    .legal-overlay .modal-label {
        font-size: .65rem;
        margin-bottom: 6px
    }

    .legal-overlay .modal-sub {
        font-size: .8rem;
        margin-bottom: 12px !important;
        line-height: 1.5
    }

    .legal-overlay .form-group {
        margin-bottom: 10px
    }

    .legal-overlay .form-group input,
    .legal-overlay .form-group select,
    .legal-overlay .form-group textarea {
        padding: 10px 14px;
        font-size: .82rem
    }

    .legal-overlay .form-submit {
        padding: 12px;
        font-size: .88rem
    }

    .marquee-section {
        padding: 12px 0
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word
    }

    .section-muted {
        max-width: 100%
    }

    .cta-title {
        font-size: clamp(1.5rem, 5vw, 2rem)
    }
}

@media(max-width:480px) {
    .hero {
        padding: 100px 16px 48px
    }

    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.8rem)
    }

    .hero-badge {
        font-size: .7rem;
        padding: 5px 12px;
        margin-bottom: 24px
    }

    section {
        padding: 48px 16px
    }

    nav {
        padding: 14px 16px
    }

    .steps {
        grid-template-columns: 1fr 1fr !important
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .achievements-grid {
        grid-template-columns: 1fr 1fr
    }

    .about-metrics {
        grid-template-columns: 1fr 1fr !important
    }

    .btn-large,
    .btn-outline-large {
        padding: 14px 24px;
        font-size: .95rem
    }

    .modal-box {
        padding: 28px 16px;
        border-radius: 16px
    }

    .section-title,
    .about-top-title {
        font-size: clamp(1.3rem, 5.5vw, 1.8rem)
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }

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

.swal2-popup {
    border-radius: 32px !important;
    padding: 2rem !important;
}

/* ── SweetAlert2 Glow Theme ── */
.swal2-show { animation: none !important; }
.swal2-hide { animation: none !important; }

.swal-animate-in {
    animation: swalBounceIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
}
.swal-animate-out {
    animation: swalFadeOut 0.25s ease forwards !important;
}
.swal2-popup {
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 20px !important;
}
.swal2-icon.swal2-success {
    border-color: #22c55e !important;
    animation: swalSuccessPulse 1.8s ease-in-out infinite !important;
}
.swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(34,197,94,0.2) !important;
}
.swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: #22c55e !important;
}
.swal2-icon.swal2-error {
    border-color: #FF3C3C !important;
    animation: swalErrorPulse 1.8s ease-in-out infinite !important;
}
.swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
    background-color: #FF3C3C !important;
}
.swal2-title {
    font-family: 'Syne', Arial, sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    font-size: 22px !important;
}
.swal2-confirm {
    border-radius: 10px !important;
    font-family: 'Syne', Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 12px 44px !important;
    box-shadow: 0 0 18px rgba(255,60,60,0.5), 0 0 40px rgba(255,60,60,0.2) !important;
    transition: box-shadow 0.3s ease, transform 0.2s ease !important;
}
.swal2-confirm:hover {
    box-shadow: 0 0 28px rgba(255,60,60,0.75), 0 0 60px rgba(255,60,60,0.35) !important;
    transform: translateY(-1px) !important;
}
@keyframes swalBounceIn {
    0%   { opacity: 0; transform: scale(0.7) translateY(30px); }
    60%  { opacity: 1; transform: scale(1.04) translateY(-6px); }
    80%  { transform: scale(0.97) translateY(2px); }
    100% { transform: scale(1) translateY(0); }
}
@keyframes swalFadeOut {
    from { opacity: 1; transform: scale(1); }
    to   { opacity: 0; transform: scale(0.92) translateY(10px); }
}
@keyframes swalSuccessPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34,197,94,0),
                    0 0 18px rgba(34,197,94,0.4),
                    0 0 50px rgba(34,197,94,0.15);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(34,197,94,0.08),
                    0 0 32px rgba(34,197,94,0.7),
                    0 0 80px rgba(34,197,94,0.3);
    }
}
@keyframes swalErrorPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255,60,60,0),
                    0 0 18px rgba(255,60,60,0.4),
                    0 0 50px rgba(255,60,60,0.15);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255,60,60,0.08),
                    0 0 32px rgba(255,60,60,0.7),
                    0 0 80px rgba(255,60,60,0.3);
    }
}