/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* 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%;
    }
}

/* ═══════════════════════════════════════════════════
     RESET & VARIABLES
   ═══════════════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #ff3c3c;
    --accent2: #ff8c00;
    --pill-bg: rgba(255, 60, 60, 0.1);
    --tr: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

[data-theme="dark"] {
    --bg: #080808;
    --surface: #111;
    --surface2: #181818;
    --border: rgba(255, 255, 255, 0.07);
    --text: #f2f2f2;
    --muted: #888;
    --nav-bg: rgba(8, 8, 8, 0.88);
    --card-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    --cta-bg: linear-gradient(135deg, #1a0505, #0d0d0d);
    --scrollbar-thumb: #333;
    --sep: rgba(255, 255, 255, 0.06);
}

[data-theme="light"] {
    --bg: #f7f5f2;
    --surface: #fff;
    --surface2: #f0ede8;
    --border: rgba(0, 0, 0, 0.09);
    --text: #111;
    --muted: #777;
    --nav-bg: rgba(247, 245, 242, 0.92);
    --card-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    --cta-bg: linear-gradient(135deg, #fff0f0, #fff8f3);
    --scrollbar-thumb: #ccc;
    --sep: rgba(0, 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 */
.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 0.3s,
        height 0.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, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.3s,
        height 0.3s;
}

[data-theme="light"] .cursor-ring {
    border-color: rgba(255, 60, 60, 0.7);
}

.cursor.big {
    width: 22px;
    height: 22px;
}

.cursor-ring.big {
    width: 58px;
    height: 58px;
}

@media (hover: none) {
    .cursor,
    .cursor-ring {
        display: none;
    }

    body {
        cursor: auto;
    }
}

/* NOISE */
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: 0.4;
}

/* SEP */
.sep {
    width: 100%;
    height: 1px;
    background: var(--sep);
    margin: 0;
}



/* NAV */
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);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    animation: fadeDown 0.6s ease both;
    transition: var(--tr);
}

.logo {
    font-family: "Syne", sans-serif;
    font-weight: 800;
    font-size: 40px;
    letter-spacing: -0.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: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.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: 0.95rem;
    transition: all 0.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 0.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 0.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);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    z-index: 199;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.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: 0.95rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.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: 0.85rem;
    cursor: none;
    font-family: "DM Sans", sans-serif;
    transition: all 0.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: 0.85rem;
    cursor: none;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.4s;
}

.btn-primary:hover {
    background: #e02020;
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(255, 60, 60, 0.35);
}

.btn-primary:hover::after {
    transform: translateX(120%) skewX(-15deg);
}

.btn-primary.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-primary .spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.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(0.97);
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.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: 0.95rem;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(90deg);
}

.modal-label {
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 0.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: -0.03em;
    margin-bottom: 8px;
}

.modal-sub {
    font-size: 0.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: 0.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: 0.88rem;
    font-family: "DM Sans", sans-serif;
    transition:
        border-color 0.25s,
        box-shadow 0.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 rgba(255, 60, 60, 0.12);
}

.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: 0.95rem;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    cursor: none;
    transition: all 0.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, 0.15),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.form-submit:hover {
    background: #e02020;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255, 60, 60, 0.35);
}

.form-submit:hover::before {
    transform: translateX(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 0.6s cubic-bezier(0.34, 1.56, 0.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: 0.88rem;
}

@keyframes bounceIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* HERO */
.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, 0.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, 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%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.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: 0.5;
    }

    85% {
        opacity: 0.1;
    }

    100% {
        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, 0.25);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 32px;
    animation: fadeUp 0.8s 0.1s ease both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.4s infinite;
}

@keyframes blink {
    0%,
    100% {
        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: -0.04em;
    max-width: 820px;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-title span {
    color: var(--accent);
}

.hero-title .line2 {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(242, 242, 242, 0.25);
    font-size: clamp(2rem, 5vw, 60px);
}

[data-theme="light"] .hero-title .line2 {
    -webkit-text-stroke: 2px rgba(0, 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 0.8s 0.35s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeUp 0.8s 0.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 0.25s;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-large::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.4s;
}

.btn-large:hover {
    background: #e02020;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 60, 60, 0.3);
}

.btn-large:hover::after {
    transform: translateX(120%) skewX(-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 0.25s;
}

.btn-outline-large:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .btn-outline-large:hover {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.04);
}

.play-icon {
    width: 20px;
    height: 20px;
    background: var(--text);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    display: inline-block;
    transition: transform 0.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 0.8s 0.65s ease both;
}

.stat-num {
    font-family: "Syne", sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
}

.stat-num span {
    color: var(--accent);
}

.stat-label {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 2px;
}

/* SCROLL ICONS */
.scroll-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 14px;
    margin: 0 6px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.scroll-icon:hover {
    transform: scale(1.15);
    background: var(--text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.scroll-icon-up::before {
    content: "\f062";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.scroll-icon-down::before {
    content: "\f063";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.scroll-icon-refresh::before {
    content: "\f021";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.scroll-icon-top::before {
    content: "\f102";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* SHARED SECTIONS */
section {
    padding: 96px 48px;
    position: relative;
}

.legal-page section {
    padding: 0;
}

.section-label {
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.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: -0.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: 0.95rem;
}

.section-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ABOUT SECTION */
.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, 0.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, 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: -0.04em;
    line-height: 1.08;
    margin-top: 12px;
}

.about-top-title em {
    font-style: normal;
    color: var(--accent);
}

.about-top-desc {
    font-size: 0.94rem;
    color: var(--muted);
    line-height: 1.8;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 60, 60, 0.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: 0.84rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: gap 0.25s;
}

.about-cta-link:hover {
    gap: 14px;
}

.about-cta-arrow {
    display: inline-block;
    transition: transform 0.25s;
}

.about-cta-link:hover .about-cta-arrow {
    transform: translateX(5px);
}

.about-v-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

.about-est {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.5;
}

.about-est strong {
    display: block;
    font-size: 0.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 0.3s,
        transform 0.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: -0.05em;
    line-height: 1;
}

.about-metric-num em {
    color: var(--accent);
    font-style: normal;
    font-size: 1.5rem;
}

.about-metric-label {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 6px;
    letter-spacing: 0.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 0.35s cubic-bezier(0.34, 1.56, 0.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 0.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 0.3s;
    z-index: 0;
}

.about-feature-row:hover::after {
    opacity: 1;
}

.about-feature-row:hover {
    border-color: rgba(255, 60, 60, 0.2);
    transform: translateX(5px);
}

.about-feature-num {
    font-family: "Syne", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.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 0.3s;
    position: relative;
    z-index: 1;
}

.about-feature-row:hover .about-feature-icon-wrap {
    border-color: var(--accent);
    background: rgba(255, 60, 60, 0.08);
    transform: rotate(-6deg) scale(1.1);
}

.about-feature-body {
    position: relative;
    z-index: 1;
}

.about-feature-title {
    font-family: "Syne", sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
}

.about-feature-desc {
    font-size: 0.81rem;
    color: var(--muted);
    line-height: 1.65;
}

.about-feature-tag {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.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: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.about-dash-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    color: #4ade80;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.about-dash-live::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
    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: 0.79rem;
    font-weight: 600;
    color: var(--text);
}

.about-skill-pct {
    font-size: 0.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(0.34, 1.2, 0.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 0.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: -0.04em;
    line-height: 1;
}

.about-minicard-val em {
    color: var(--accent);
    font-style: normal;
}

.about-minicard-label {
    font-size: 0.69rem;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: 0.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: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.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;
    }

    /* Mobile only - hide descriptions, keep 2x2 grid */
    @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: 0.85rem;
            margin-bottom: 4px;
        }

        .about-feature-icon-wrap {
            width: 32px;
            height: 32px;
            font-size: 0.9rem;
        }

        .about-feature-tag {
            font-size: 0.6rem;
            padding: 2px 8px;
        }
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
        margin-top: 40px;
        padding-top: 28px;
    }
}

/* SERVICES */
.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 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 60, 60, 0.35);
    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 0.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, 0.03),
        transparent
    );
    transform: skewX(-15deg);
    transition: left 0.6s;
}

.service-card:hover::after {
    left: 130%;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--pill-bg);
    border: 1px solid rgba(255, 60, 60, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
    transition: transform 0.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: -0.02em;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
}

.service-link {
    display: inline-block;
    margin-top: 18px;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.service-link:hover {
    color: var(--text);
}

/* HOW IT WORKS */
.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, 0.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, 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, 0.3) 0,
        rgba(255, 60, 60, 0.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 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-bubble-inner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface2);
    border: 1px solid rgba(255, 60, 60, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.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 rgba(255, 60, 60, 0.06),
        0 0 30px rgba(255, 60, 60, 0.15);
    transform: scale(1.08);
}

.step:hover .step-bubble-inner {
    background: rgba(255, 60, 60, 0.1);
    border-color: rgba(255, 60, 60, 0.3);
}

.step-icon {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 20px;
    transition: transform 0.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: -0.02em;
}

.step-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.65;
}

.step-tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--pill-bg);
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 60, 60, 0.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: -0.04em;
}

.how-stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.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 */
.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: 0.82rem;
    color: var(--muted);
    cursor: none;
    transition: all 0.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 rgba(255, 60, 60, 0.35);
    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 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s;
    width: 100%;
    min-width: 0;
}

.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 0.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 0.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 0.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: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.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: -0.02em;
    margin-bottom: 4px;
}

.project-sub {
    font-size: 0.78rem;
    color: var(--muted);
}

.project-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    z-index: 2;
}

.project-filters {
    position: relative;
}

#filterIndicator {
    position: absolute;
    background: var(--accent);
    border-radius: 50px;
    transition:
        left 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    box-shadow: 0 6px 20px rgba(255, 60, 60, 0.35);
}

.pf-btn {
    position: relative;
    z-index: 1;
}

[data-theme="light"] .project-badge {
    background: rgba(255, 255, 255, 0.85);
    color: #111;
}

.coming-soon-badge {
    background: rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 140, 0, 0.4);
    color: var(--accent2);
}

/* TECHNOLOGIES */
.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, 0.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: translateX(0);
    }

    100% {
        transform: translateX(-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 0.25s,
        background 0.25s,
        box-shadow 0.25s,
        transform 0.25s;
    white-space: nowrap;
    flex-shrink: 0;
    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 rgba(255, 60, 60, 0.12);
    z-index: 10;
}

.tech-icon {
    font-size: 1.3rem;
    pointer-events: none;
}

.tech-name {
    font-family: "Syne", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    pointer-events: none;
}

.tech-hint {
    text-align: center;
    margin-top: 20px;
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.04em;
}

/* CREATORS */
.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 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.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 0.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, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.creator-card:hover .creator-overlay {
    opacity: 1;
}

.creator-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

[data-theme="light"] .creator-badge {
    background: rgba(255, 255, 255, 0.85);
    color: #111;
}

.creator-info {
    padding: 20px;
}

.creator-name {
    font-family: "Syne", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.creator-role {
    font-size: 0.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: 0.82rem;
}

.creator-rating span {
    color: #ffb400;
}

.creator-price {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
}

/* TESTIMONIALS */
.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 0.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: 0.05;
    pointer-events: none;
}

.testi-card:hover {
    border-color: rgba(255, 60, 60, 0.3);
    transform: translateY(-4px);
}

.testi-stars {
    color: #ffb400;
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.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: 0.72rem;
    font-weight: 700;
    color: #fff;
    font-family: "Syne", sans-serif;
    flex-shrink: 0;
}

.testi-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.testi-brand {
    font-size: 0.74rem;
    color: var(--muted);
}

/* ACHIEVEMENTS */
.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 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.ach-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 60, 60, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.ach-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(255, 60, 60, 0.1);
}

.ach-card:hover::before {
    opacity: 1;
}

.ach-num {
    font-family: "Syne", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.ach-label {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* PRICING */
.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 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(
        160deg,
        rgba(255, 60, 60, 0.08),
        var(--surface)
    );
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.pricing-plan {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.pricing-price {
    font-family: "Syne", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin: 14px 0;
}

.pricing-price sub {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--muted);
}

.pricing-desc {
    font-size: 0.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: 0.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: 0.88rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    cursor: none;
    transition: all 0.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: 0.85;
    transform: translateY(-1px);
}

.pricing-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 36px;
    line-height: 1.6;
}

.pricing-note strong {
    color: var(--text);
}

/* FAQ */
.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, 0.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, 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 0.35s,
        box-shadow 0.35s,
        transform 0.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 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 0 0 0 20px;
}

.faq-item.open {
    border-color: rgba(255, 60, 60, 0.4);
    box-shadow: 0 8px 32px rgba(255, 60, 60, 0.08);
    transform: translateX(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 0.25s;
    gap: 20px;
}

.faq-item.open .faq-question {
    background: rgba(255, 60, 60, 0.03);
}

.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: rgba(255, 60, 60, 0.4);
    letter-spacing: 0.12em;
    min-width: 24px;
    transition: color 0.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: -0.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 0.35s cubic-bezier(0.34, 1.56, 0.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 rgba(255, 60, 60, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 32px 28px 76px;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.85;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.faq-answer-inner strong {
    color: var(--text);
    font-weight: 700;
}

/* NEWSLETTER */
.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 rgba(0, 0, 0, 0.08);
    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: 0.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: 0.88rem;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    cursor: none;
    transition: all 0.25s;
    white-space: nowrap;
    border-radius: 0 60px 60px 0;
}

.newsletter-btn:hover {
    background: #e02020;
    box-shadow: 0 0 20px rgba(255, 60, 60, 0.3);
}
.newsletter-privacy {
    font-size: 0.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 0.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, 0.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: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.nb-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
}

.newsletter-success {
    display: none;
    color: var(--accent);
    font-weight: 600;
    margin-top: 16px;
    font-size: 0.9rem;
}

.newsletter-feedback {
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
    animation: slideUp 0.3s ease;
}

.newsletter-feedback.success {
    display: block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.newsletter-feedback.error {
    display: block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.newsletter-feedback.loading {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.newsletter-feedback .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA */
.cta-section {
    padding: 80px 48px;
    background: var(--bg);
}

.cta-inner {
    background: var(--cta-bg);
    border: 1px solid rgba(255, 60, 60, 0.25);
    border-radius: 24px;
    padding: 60px 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, 0.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: -0.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 */
.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, 0.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, 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: -0.04em;
    line-height: 1.08;
}

.contact-head-title em {
    font-style: normal;
    color: var(--accent);
}

.contact-head-right {
    font-size: 0.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 0.3s;
    cursor: none;
    text-decoration: none;
}

.contact-card:hover {
    border-color: var(--accent);
    transform: translateX(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, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.contact-card:hover .contact-card-icon {
    transform: rotate(-6deg) scale(1.1);
}

.contact-card-label {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-card-val {
    font-size: 0.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, 0.06),
        transparent 65%
    );
    border-radius: 50%;
    pointer-events: none;
}

.cf-label {
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.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: -0.03em;
    margin-bottom: 6px;
}

.cf-sub {
    font-size: 0.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: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    cursor: none;
    transition: all 0.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: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.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: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 50px;
    font-size: 0.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 rgba(74, 222, 128, 0.5);
    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 SOCIAL ICONS — THEME-AWARE & POLISHED
      ═══════════════════════════════════════════════════ */
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: 0.83rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 260px;
}

.footer-col-title {
    font-family: "Syne", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    font-size: 0.83rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    font-weight: 500;
    position: relative;
    transition: color 0.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 0.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 Buttons: fully theme-aware ── */
.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 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--muted);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent);
    transform: scale(0);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.social-btn:hover {
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(255, 60, 60, 0.35);
}

.social-btn:hover::before {
    transform: scale(1);
}

.social-btn:hover svg {
    transform: scale(1.15);
}

/* Light mode overrides */
[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);
}

/* Mobile: use pointer cursor */
@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: 0.78rem;
    color: var(--muted);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.78rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* WhatsApp — hidden until past hero */
.wa-float {
    position: fixed;
    bottom: 96px;
    right: 22px;
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7) translateY(20px);
    transition:
        opacity 0.4s ease,
        transform 0.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 rgba(37, 211, 102, 0.4);
    animation: waPulse 2.2s infinite;
    transition: transform 0.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 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow:
            0 4px 20px rgba(37, 211, 102, 0.8),
            0 0 0 10px rgba(37, 211, 102, 0.08);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* SCROLL TOP */
.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: 0.95rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s;
    box-shadow: 0 4px 16px rgba(255, 60, 60, 0.35);
}

.scroll-top.show {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-3px);
    background: #e02020;
}

/* LEGAL OVERLAYS */
.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: 0.85rem;
    cursor: none;
    margin-bottom: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 50px;
    transition: all 0.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: -0.03em;
}

.legal-content h3 {
    font-family: "Syne", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 6px 0 4px;
}

.legal-content p,
.legal-content li {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: 0;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 0;
}

.legal-content ul li {
    margin-bottom: 0;
    padding: 0;
}

.legal-last-updated {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 32px;
}

/* KEYFRAMES */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .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 {
        grid-template-columns: 1fr;
    }

    .creators-grid,
    .testi-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-benefits {
        grid-template-columns: 1fr;
    }

    .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;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .btn-large,
    .btn-outline-large {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }
}

/* ══════════════════════════════════════
   HERO — 2-column layout
══════════════════════════════════════ */
.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 container ── */
.hero-visual {
    position: relative;
    width: 460px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: fadeUp 1s 0.4s ease both;
}

/* Canvas particle field */
.hv-canvas {
    position: absolute;
    inset: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    pointer-events: none;
    opacity: 0.6;
}

/* Ambient glow */
.hv-ambient {
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(
        circle,
        rgba(255, 60, 60, 0.22) 0%,
        rgba(255, 140, 0, 0.06) 50%,
        transparent 70%
    );
    border-radius: 50%;
    animation: gPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* ── Rings ── */
.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, 0.25);
    animation: spinRing 14s linear infinite;
    box-shadow: 0 0 20px rgba(255, 60, 60, 0.08) inset;
}

.hv-ring2 {
    width: 310px;
    height: 310px;
    border: 1px solid rgba(255, 140, 0, 0.15);
    animation: spinRing 24s linear infinite reverse;
}

.hv-ring3 {
    width: 410px;
    height: 410px;
    border: 1px dashed rgba(255, 60, 60, 0.08);
    animation: spinRing 38s linear infinite;
}

/* Dot that travels along ring edge */
.hv-ring-dot {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow:
        0 0 10px rgba(255, 60, 60, 0.9),
        0 0 20px rgba(255, 60, 60, 0.5);
}

.hv-ring-dot2 {
    background: #ff8c00;
    box-shadow:
        0 0 10px rgba(255, 140, 0, 0.9),
        0 0 20px rgba(255, 140, 0, 0.5);
    top: auto;
    bottom: -5px;
}

@keyframes spinRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ── Core ── */
.hv-core {
    position: absolute;
    z-index: 5;
    animation: floatCore 4.5s ease-in-out infinite;
}

@keyframes floatCore {
    0%,
    100% {
        transform: translateY(0px) 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, 0.35);
    box-shadow:
        0 0 0 6px rgba(255, 60, 60, 0.05),
        0 0 0 14px rgba(255, 60, 60, 0.025),
        0 0 50px rgba(255, 60, 60, 0.25),
        0 24px 70px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on core */
.hv-core-inner::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent,
        rgba(255, 255, 255, 0.07),
        transparent
    );
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -60%;
    }

    100% {
        left: 160%;
    }
}

.hv-core-glow {
    position: absolute;
    bottom: -20px;
    width: 80px;
    height: 40px;
    background: rgba(255, 60, 60, 0.3);
    filter: blur(18px);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,
    100% {
        opacity: 0.5;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.3);
    }
}

.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-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);
}
}

/* ── Orbiting dots ── */
.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, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.45),
        0 0 12px rgba(255, 60, 60, 0.1);
    transform: translate(-50%, -50%);
    transition: box-shadow 0.3s;
}

.hv-orb-dot:hover {
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.45),
        0 0 20px rgba(255, 60, 60, 0.4);
}

.hv-orb-dot-sm {
    width: 38px;
    height: 38px;
    font-size: 0.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 {
    from {
        transform: rotate(0deg) translateX(105px);
    }

    to {
        transform: rotate(360deg) translateX(105px);
    }
}

@keyframes orbit2 {
    from {
        transform: rotate(180deg) translateX(155px);
    }

    to {
        transform: rotate(540deg) translateX(155px);
    }
}

@keyframes orbit3 {
    from {
        transform: rotate(60deg) translateX(105px);
    }

    to {
        transform: rotate(420deg) translateX(105px);
    }
}

@keyframes orbit4 {
    from {
        transform: rotate(270deg) translateX(155px);
    }

    to {
        transform: rotate(630deg) translateX(155px);
    }
}

.hv-ow5 {
    animation: orbit5 8s linear infinite;
}

.hv-ow6 {
    animation: orbit6 10s linear infinite;
}

.hv-orb-dot-xs {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
}

@keyframes orbit1 {
    from {
        transform: rotate(0deg) translateX(105px);
    }

    to {
        transform: rotate(360deg) translateX(105px);
    }
}

@keyframes orbit2 {
    from {
        transform: rotate(180deg) translateX(155px);
    }

    to {
        transform: rotate(540deg) translateX(155px);
    }
}

@keyframes orbit3 {
    from {
        transform: rotate(60deg) translateX(105px);
    }

    to {
        transform: rotate(420deg) translateX(105px);
    }
}

@keyframes orbit4 {
    from {
        transform: rotate(270deg) translateX(155px);
    }

    to {
        transform: rotate(630deg) translateX(155px);
    }
}

@keyframes orbit5 {
    from {
        transform: rotate(0deg) translateX(200px);
    }

    to {
        transform: rotate(360deg) translateX(200px);
    }
}

@keyframes orbit6 {
    from {
        transform: rotate(90deg) translateX(180px);
    }

    to {
        transform: rotate(450deg) translateX(180px);
    }
}

/* ── Floating Cards ── */
.hv-card {
    position: absolute;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 60, 60, 0.06);
    z-index: 10;
    backdrop-filter: blur(16px);
    transition:
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s;
    overflow: hidden;
}

/* Accent stripe on top of each card */
.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 0.3s;
}

.hv-card:hover::before {
    opacity: 1;
}

.hv-card:hover {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 60, 60, 0.2),
        0 0 30px rgba(255, 60, 60, 0.08) !important;
}

/* Top-left: Active Project */
.hv-card-tl {
    top: 18px;
    left: 0;
    width: 212px;
    animation: floatTL 5s ease-in-out infinite;
}

/* Top-right: Rating */
.hv-card-tr {
    top: 18px;
    right: 0;
    width: 162px;
    animation: floatTR 6s ease-in-out infinite;
}

/* Bottom-left: 48hr */
.hv-card-bl {
    bottom: 50px;
    left: 0;
    width: 204px;
    animation: floatBL 5.5s ease-in-out infinite;
}

/* Bottom-right: Clients */
.hv-card-br {
    bottom: 50px;
    right: 0;
    width: 158px;
    animation: floatBR 7s ease-in-out infinite;
}

@keyframes floatTL {
    0%,
    100% {
        transform: translateY(0) rotate(-0.8deg);
    }

    50% {
        transform: translateY(-12px) rotate(0.2deg);
    }
}

@keyframes floatTR {
    0%,
    100% {
        transform: translateY(0) rotate(0.8deg);
    }

    50% {
        transform: translateY(-16px) rotate(-0.2deg);
    }
}

@keyframes floatBL {
    0%,
    100% {
        transform: translateY(0) rotate(-0.5deg);
    }

    50% {
        transform: translateY(-9px) rotate(0.5deg);
    }
}

@keyframes floatBR {
    0%,
    100% {
        transform: translateY(0) rotate(1.2deg);
    }

    50% {
        transform: translateY(-13px) rotate(-0.3deg);
    }
}

/* Card internals */
.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 rgba(74, 222, 128, 0.8);
    animation: blink 1.8s infinite;
    flex-shrink: 0;
}

.hv-card-eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hv-live-badge {
    margin-left: auto;
    font-size: 0.6rem;
    font-weight: 700;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    padding: 2px 8px;
    border-radius: 50px;
}

.hv-card-name {
    font-family: "Syne", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

/* Progress bars */
.hv-bar-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
}

.hv-bar-lbl {
    font-size: 0.62rem;
    color: var(--muted);
    min-width: 52px;
}

.hv-bar-track {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.hv-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 3px;
    transition: width 2.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
}

/* Shimmer on bar fill */
.hv-bar-fill::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    border-radius: 3px;
    animation: barShimmer 2s ease-in-out infinite;
}

@keyframes barShimmer {
    0%,
    100% {
        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: 0.62rem;
    font-weight: 800;
    font-family: "Syne", sans-serif;
    min-width: 28px;
    text-align: right;
}

/* Rating card */
.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: -0.04em;
}

.hv-rating-stars {
    color: #ffb400;
    font-size: 0.72rem;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.hv-rating-lbl {
    font-size: 0.65rem;
    color: var(--muted);
}

/* Icon box */
.hv-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Typing animation */
.hv-typing-wrap {
    display: flex;
    align-items: center;
    gap: 1px;
    font-size: 0.68rem;
    color: #4ade80;
    font-weight: 600;
    min-height: 1.2em;
}

.hv-cursor {
    animation: blink 0.9s infinite;
    color: #4ade80;
    font-weight: 300;
}

/* Counter */
.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: -0.04em;
    line-height: 1;
}

.hv-mini-lbl {
    font-size: 0.65rem;
    color: var(--muted);
    margin-top: 3px;
}

/* Avatar row */
.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: 0.6rem;
    font-weight: 800;
    color: #fff;
    font-family: "Syne", sans-serif;
    border: 2px solid var(--surface);
    transition: transform 0.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: 0.7rem;
}

/* Tech pills */
.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: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateX(16px);
    animation: pillIn 0.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: translateX(0);
    }
}

.hv-pill:hover {
    border-color: var(--accent);
    color: var(--text);
    background: rgba(255, 60, 60, 0.08);
    transform: translateX(-5px) scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 60, 60, 0.15);
}

/* Light theme */
[data-theme="light"] .hv-card {
    border-color: rgba(0, 0, 0, 0.07);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hv-bar-track {
    background: rgba(0, 0, 0, 0.07);
}

/* ── Responsive ── */
@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 — hidden until past hero */
.whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7) translateY(20px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.whatsapp-float.wа-visible {
    opacity: 1;
    pointer-events: all;
    transform: scale(1) translateY(0);
}

/* ── HERO VISUAL MAXIMUM UPGRADE ── */

/* Floating animation for cards */
@keyframes hvFloat {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes hvFloatR {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes hvPulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.4);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255, 60, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 60, 60, 0);
    }
}

@keyframes hvShimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes hvBlink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes hvLiveDot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.6);
    }
}

@keyframes hvBarGlow {
    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.4) drop-shadow(0 0 4px #ff3c3c);
    }
}

@keyframes hvPillSlide {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hvCounterPop {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    70% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes hvOrbitPulse {
    0%,
    100% {
        box-shadow: 0 0 6px 2px rgba(255, 60, 60, 0.7);
    }

    50% {
        box-shadow: 0 0 14px 5px rgba(255, 140, 0, 0.8);
    }
}

@keyframes hvScanline {
    0% {
        top: 0%;
    }

    100% {
        top: 100%;
    }
}

/* Card float */
.hv-card-tl {
    animation: hvFloat 4s ease-in-out infinite;
}

.hv-card-tr {
    animation: hvFloatR 5s ease-in-out infinite 0.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;
}

/* Cards hover lift */
.hv-card:hover {
    transform: scale(1.045) translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(255, 60, 60, 0.25) !important;
    z-index: 10;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Live dot pulse */
.hv-live-dot {
    animation: hvLiveDot 1.2s ease-in-out infinite !important;
}

/* Progress bar glow pulse */
.hv-bar-fill.loaded {
    animation: hvBarGlow 2.5s ease-in-out infinite 0.8s !important;
}

/* Shimmer effect on rating number */
.hv-rating-num {
    background: linear-gradient(
        90deg,
        #ff3c3c 0%,
        #ff8c00 40%,
        #fff 50%,
        #ff8c00 60%,
        #ff3c3c 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hvShimmer 3s linear infinite;
}

/* Typing cursor */
#hvTyping::after {
    content: "|";
    animation: hvBlink 0.8s step-end infinite;
    color: #ff3c3c;
    margin-left: 1px;
}

/* Pills stagger slide-in */
.hv-pill {
    animation: hvPillSlide 0.5s ease forwards;
    opacity: 0;
}

.hv-pill:nth-child(1) {
    animation-delay: 0.3s;
}

.hv-pill:nth-child(2) {
    animation-delay: 0.5s;
}

.hv-pill:nth-child(3) {
    animation-delay: 0.7s;
}

.hv-pill:nth-child(4) {
    animation-delay: 0.9s;
}

/* Orbit dots glowing */
.hv-orbit-dot {
    animation: hvOrbitPulse 2s ease-in-out infinite !important;
}

/* Counter pop on load */
.hv-count.popped {
    animation: hvCounterPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275)
        forwards;
}

/* Scanline effect on center logo card */
.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, 0.6),
        transparent
    );
    animation: hvScanline 3s linear infinite;
    pointer-events: none;
}

/* Center logo pulse ring */
.hv-center-card .hv-logo-wrap {
    animation: hvPulseRing 2.5s ease-in-out infinite;
    border-radius: 50%;
}

/* Glassmorphism boost on dark mode */
[data-theme="dark"] .hv-card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(14px) saturate(1.4) !important;
    border: 1px solid rgba(255, 60, 60, 0.15) !important;
}

.hero-title .accent-word {
    color: var(--accent);
    font-size: clamp(2.8rem, 4vw, 3.2rem);
    display: block;
    white-space: normal;
}

/* ═══════════════════════════════════════════════════
       RESPONSIVE — Full mobile/tablet support
   ═══════════════════════════════════════════════════ */

@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 {
        grid-template-columns: repeat(2, 1fr);
    }
    .creators-grid,
    .testi-grid,
    .pricing-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Force projects to 1 column on smaller screens */
    .projects-grid {
        grid-template-columns: 1fr !important;
    }

    .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 */
    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;
    }

    /* Prevent horizontal overflow black space */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw;
    }

    /* SECTIONS */
    section {
        padding: 60px 20px;
    }

    /* HERO — override grid to stack vertically */
    .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: 0.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: 0.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: 0.75rem;
    }

    /* ALL GRIDS → two columns on mobile */
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    .service-card {
        border-right: none;
        padding: 20px 14px;
    }
    .service-name {
        font-size: 0.9rem;
    }
    .service-desc {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    .service-link {
        font-size: 0.7rem;
    }
    .creators-grid,
    .testi-grid,
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }

    /* PROJECTS → one column on mobile */
    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 0 4px;
    }

    .project-card {
        border-radius: 12px;
    }

    .project-thumb {
        height: 180px;
    }

    .project-info {
        padding: 16px;
    }

    .project-name {
        font-size: 1rem;
    }

    .project-sub {
        font-size: 0.8rem;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .newsletter-benefits {
        grid-template-columns: 1fr;
    }

    /* ABOUT — stack columns */
    .about-top {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    .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 */
    .steps {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .steps-line {
        display: none;
    }

    /* HOW-BOTTOM stats → 2 per row */
    .how-bottom {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px 16px;
    }
    .how-divider {
        display: none;
    }

    /* PROJECT FILTERS — fit on mobile */
    .project-filters {
        gap: 6px;
    }
    .pf-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
    .pf-btn.active {
        transform: none;
        box-shadow: 0 4px 12px rgba(255, 60, 60, 0.25);
    }

    /* FOOTER */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* CTA */
    .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 */
    .contact-section {
        padding: 60px 20px;
    }
    .contact-form-wrap {
        padding: 28px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .modal-box {
        padding: 36px 24px;
    }

    /* LOGIN CARD — reduce congestion on mobile */
    .legal-overlay .modal-title {
        font-size: clamp(1.3rem, 5vw, 1.7rem) !important;
        margin-bottom: 4px;
    }
    .legal-overlay .modal-label {
        font-size: 0.65rem;
        margin-bottom: 6px;
    }
    .legal-overlay .modal-sub {
        font-size: 0.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: 0.82rem;
    }
    .legal-overlay .form-submit {
        padding: 12px;
        font-size: 0.88rem;
    }

    .marquee-section {
        padding: 12px 0;
    }

    /* HEADING OVERFLOW FIX */
    .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: 0.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: 0.95rem;
    }
    .modal-box {
        padding: 28px 16px;
        border-radius: 16px;
    }

    .section-title {
        font-size: clamp(1.3rem, 5.5vw, 1.8rem);
    }
    .about-top-title {
        font-size: clamp(1.3rem, 5.5vw, 1.8rem);
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 767px) {
    /* Reduce or disable heavy animations on mobile */
    .hero-particles {
        opacity: 0.5;
    }
    
    .hero-particles .particle {
        width: 2px !important;
        height: 2px !important;
    }
    
    .hv-canvas {
        opacity: 0.6;
    }
    
    /* Reduce glow effects on mobile */
    .hero-glow,
    .hero-glow2 {
        opacity: 0.5;
    }
    
    /* Disable hover animations on mobile */
    .hv-card,
    .project-card,
    .service-card {
        transform: none !important;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
