/* ============================================================
   SKIBZY — Premium Design System
   Modern, Luxury, Conversion-Focused Landing Page
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg-primary: #FAFAF8;
    --bg-warm: #F7F5F0;
    --bg-section-alt: #F2F0EB;
    --bg-dark: #1A1A2E;
    --bg-footer: #0F0F1A;

    --text-primary: #1A1A2E;
    --text-secondary: #5A5A6E;
    --text-muted: #8A8A9E;
    --text-light: #FFFFFF;

    --accent-gold: #C9A84C;
    --accent-gold-light: #E8D48B;
    --accent-blue: #5B8DEF;
    --accent-blue-light: #A8C4F7;
    --accent-lavender: #B8A9E8;
    --accent-mint: #7ECEC1;
    --accent-rose: #E8A0B8;
    --accent-peach: #F0C8A0;

    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);

    --card-bg: #FFFFFF;
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    --card-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.08);
    --card-radius: 28px;
    --card-radius-sm: 20px;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;

    --fs-hero: clamp(2.8rem, 5.5vw, 4.5rem);
    --fs-h2: clamp(2rem, 3.5vw, 3rem);
    --fs-h3: clamp(1.3rem, 2vw, 1.6rem);
    --fs-h4: clamp(1.05rem, 1.5vw, 1.2rem);
    --fs-body: clamp(0.95rem, 1.1vw, 1.05rem);
    --fs-small: clamp(0.82rem, 0.9vw, 0.9rem);
    --fs-pill: 0.78rem;

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 140px);
    --container-max: 1200px;
    --container-padding: clamp(20px, 4vw, 40px);

    /* Transition */
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-base: 0.4s var(--ease-premium);
    --transition-slow: 0.7s var(--ease-premium);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---------- UTILITY CLASSES ---------- */
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    font-size: var(--fs-pill);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.section-heading {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtext {
    font-size: var(--fs-body);
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-pill {
    margin-bottom: 16px;
}

.section-header .section-subtext {
    margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(26, 26, 46, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(26, 26, 46, 0.15);
}

.btn-secondary:hover {
    background: rgba(26, 26, 46, 0.04);
    border-color: rgba(26, 26, 46, 0.3);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
}

.btn-whatsapp:hover {
    background: #1EBE5A;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--text-primary);
}

.btn-gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.3);
}

.btn svg,
.btn i {
    width: 18px;
    height: 18px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.5s var(--ease-premium);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.navbar-logo-img {
    height: 60px;
    width: auto;
    display: block;
    transition: all var(--transition-base);
    filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-logo-img {
    filter: none;
}

.navbar-logo:hover .navbar-logo-img {
    opacity: 0.85;
}

.footer-logo-img {
    height: 46px;
    filter: brightness(0) invert(1);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-base);
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar-links a:hover {
    color: #ffffff;
}

.navbar-links a:hover::after {
    width: 100%;
}

/* Scrolled state — dark text */
.navbar.scrolled .navbar-links a {
    color: var(--text-secondary);
}

.navbar.scrolled .navbar-links a::after {
    background: var(--accent-blue);
}

.navbar.scrolled .navbar-links a:hover {
    color: var(--text-primary);
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-cta .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.navbar-cta .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
}

.navbar-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .navbar-cta .btn-secondary {
    color: var(--text-primary);
    border-color: rgba(26, 26, 46, 0.15);
}

.navbar.scrolled .navbar-cta .btn-secondary:hover {
    background: rgba(26, 26, 46, 0.04);
    border-color: rgba(26, 26, 46, 0.3);
}

/* Mobile hamburger */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.navbar-hamburger span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s var(--ease-premium);
}

.navbar.scrolled .navbar-hamburger span {
    background: var(--text-primary);
}

.navbar-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 248, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s var(--ease-premium);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-menu .btn {
    margin-top: 12px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: var(--bg-dark);
}

/* Hero gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 80%;
    background: radial-gradient(ellipse at center,
            rgba(91, 141, 239, 0.08) 0%,
            rgba(184, 169, 232, 0.06) 30%,
            rgba(201, 168, 76, 0.04) 60%,
            transparent 80%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
}

/* Floating shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    right: -5%;
    background: radial-gradient(circle, rgba(91, 141, 239, 0.12), transparent 70%);
    animation: float1 12s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -5%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 70%);
    animation: float2 10s ease-in-out infinite;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 15%;
    background: radial-gradient(circle, rgba(184, 169, 232, 0.1), transparent 70%);
    animation: float3 14s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-20px, 30px) rotate(5deg);
    }

    66% {
        transform: translate(15px, -15px) rotate(-3deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(25px, -20px);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-15px, 25px);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: var(--fs-pill);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    animation: badgeFade 1s var(--ease-premium) 0.3s both;
}

.hero-badge .badge-avatars {
    display: flex;
}

.hero-badge .badge-avatars span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    display: inline-block;
}

.hero-badge .badge-avatars span:first-child {
    margin-left: 0;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-lavender));
}

.hero-badge .badge-avatars span:nth-child(2) {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-peach));
}

.hero-badge .badge-avatars span:nth-child(3) {
    background: linear-gradient(135deg, var(--accent-mint), var(--accent-blue));
}

@keyframes badgeFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

.hero-title {
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 24px;
    animation: titleReveal 0.9s var(--ease-premium) 0.5s both;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #7db4ff, #c4a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.2) saturate(1.1);
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    animation: subtitleReveal 0.9s var(--ease-premium) 0.7s both;
}

@keyframes subtitleReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    animation: ctaReveal 0.9s var(--ease-premium) 0.9s both;
}

@keyframes ctaReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-mockup {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    animation: mockupReveal 1.2s var(--ease-premium) 1.1s both;
}

.hero-mockup img {
    width: 100%;
    border-radius: var(--card-radius);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hero-mockup::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--card-radius);
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

@keyframes mockupReveal {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

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

/* Floating accent cards on hero mockup */
.hero-float-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius-sm);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--glass-shadow);
    animation: floatCard 6s ease-in-out infinite;
}

.hero-float-card .float-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hero-float-card-1 {
    top: 15%;
    left: -5%;
    animation-delay: 0s;
}

.hero-float-card-1 .float-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
    color: #25D366;
}

.hero-float-card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

.hero-float-card-2 .float-icon {
    background: linear-gradient(135deg, rgba(91, 141, 239, 0.15), rgba(91, 141, 239, 0.05));
    color: var(--accent-blue);
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ============================================================
   TRUST HIGHLIGHTS
   ============================================================ */
.trust-highlights {
    padding: 60px 0 var(--section-padding);
    position: relative;
}

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

.trust-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--card-radius-sm);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-blue-light), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.trust-card:hover::before {
    opacity: 1;
}

.trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    transition: transform var(--transition-base);
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
}

.trust-card:nth-child(1) .trust-icon {
    background: linear-gradient(135deg, rgba(91, 141, 239, 0.12), rgba(91, 141, 239, 0.04));
    color: var(--accent-blue);
}

.trust-card:nth-child(2) .trust-icon {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
    color: var(--accent-gold);
}

.trust-card:nth-child(3) .trust-icon {
    background: linear-gradient(135deg, rgba(126, 206, 193, 0.12), rgba(126, 206, 193, 0.04));
    color: var(--accent-mint);
}

.trust-card:nth-child(4) .trust-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
    color: #25D366;
}

.trust-title {
    font-family: var(--font-display);
    font-size: var(--fs-h4);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.trust-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-warm);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-warm));
    pointer-events: none;
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--card-radius);
    padding: 36px 30px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(91, 141, 239, 0.03));
    transition: height var(--transition-slow);
}

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

.service-card:hover::after {
    height: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

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

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, rgba(91, 141, 239, 0.12), rgba(91, 141, 239, 0.04));
    color: var(--accent-blue);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, rgba(184, 169, 232, 0.12), rgba(184, 169, 232, 0.04));
    color: var(--accent-lavender);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, rgba(126, 206, 193, 0.12), rgba(126, 206, 193, 0.04));
    color: var(--accent-mint);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
    color: var(--accent-gold);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, rgba(232, 160, 184, 0.12), rgba(232, 160, 184, 0.04));
    color: var(--accent-rose);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, rgba(240, 200, 160, 0.12), rgba(240, 200, 160, 0.04));
    color: var(--accent-peach);
}

.service-card:nth-child(7) .service-icon {
    background: linear-gradient(135deg, rgba(91, 141, 239, 0.12), rgba(91, 141, 239, 0.04));
    color: var(--accent-blue);
}

.service-card:nth-child(8) .service-icon {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
    color: var(--accent-gold);
}

.service-card:nth-child(9) .service-icon {
    background: linear-gradient(135deg, rgba(126, 206, 193, 0.12), rgba(126, 206, 193, 0.04));
    color: var(--accent-mint);
}

.service-card:nth-child(10) .service-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
    color: #25D366;
}

.service-title {
    font-family: var(--font-display);
    font-size: var(--fs-h4);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.service-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries {
    padding: var(--section-padding) 0;
    position: relative;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.industry-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    font-size: var(--fs-small);
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition-base);
    cursor: default;
}

.industry-chip .chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.industry-chip:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
    border-color: rgba(91, 141, 239, 0.2);
}

/* Color cycle for chips */
.industry-chip:nth-child(6n+1) .chip-dot {
    background: var(--accent-blue);
}

.industry-chip:nth-child(6n+2) .chip-dot {
    background: var(--accent-gold);
}

.industry-chip:nth-child(6n+3) .chip-dot {
    background: var(--accent-mint);
}

.industry-chip:nth-child(6n+4) .chip-dot {
    background: var(--accent-lavender);
}

.industry-chip:nth-child(6n+5) .chip-dot {
    background: var(--accent-rose);
}

.industry-chip:nth-child(6n+6) .chip-dot {
    background: var(--accent-peach);
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
    padding: var(--section-padding) 0;
    background: var(--bg-warm);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-warm));
    pointer-events: none;
}

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

.portfolio-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
    position: relative;
}

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

.portfolio-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-section-alt), var(--bg-warm));
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-thumb img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 46, 0.6));
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
}

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

.portfolio-overlay .btn {
    padding: 10px 20px;
    font-size: 0.82rem;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.portfolio-tag {
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    background: rgba(91, 141, 239, 0.08);
    color: var(--accent-blue);
}

.portfolio-tag.tag-live {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.portfolio-tag.tag-seo {
    background: rgba(201, 168, 76, 0.1);
    color: var(--accent-gold);
}

.portfolio-tag.tag-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.portfolio-name {
    font-family: var(--font-display);
    font-size: var(--fs-h4);
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.portfolio-url {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-family: 'SF Mono', 'Fira Code', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ============================================================
   TEMPLATES
   ============================================================ */
.templates {
    padding: var(--section-padding) 0;
    position: relative;
}

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

.template-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.template-thumb {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--bg-section-alt), var(--bg-warm));
}

.template-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform var(--transition-slow);
}

.template-card:hover .template-thumb img {
    transform: scale(1.05);
}

.template-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    color: var(--text-primary);
}

.template-info {
    padding: 24px;
}

.template-name {
    font-family: var(--font-display);
    font-size: var(--fs-h4);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.template-desc {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
}

.template-info .btn {
    padding: 10px 22px;
    font-size: 0.82rem;
    width: 100%;
}

/* ============================================================
   VALUE / WHY SKIBZY
   ============================================================ */
.value-section {
    padding: var(--section-padding) 0;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.value-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-warm));
    pointer-events: none;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.value-content .section-pill {
    margin-bottom: 16px;
}

.value-content .section-heading {
    margin-bottom: 20px;
}

.value-content .section-subtext {
    margin-bottom: 36px;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.value-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item:nth-child(1) .value-item-icon {
    background: rgba(91, 141, 239, 0.1);
    color: var(--accent-blue);
}

.value-item:nth-child(2) .value-item-icon {
    background: rgba(201, 168, 76, 0.1);
    color: var(--accent-gold);
}

.value-item:nth-child(3) .value-item-icon {
    background: rgba(126, 206, 193, 0.1);
    color: var(--accent-mint);
}

.value-item:nth-child(4) .value-item-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.value-item:nth-child(5) .value-item-icon {
    background: rgba(184, 169, 232, 0.1);
    color: var(--accent-lavender);
}

.value-item:nth-child(6) .value-item-icon {
    background: rgba(232, 160, 184, 0.1);
    color: var(--accent-rose);
}

.value-item-text {
    font-size: var(--fs-body);
    color: var(--text-secondary);
    line-height: 1.6;
}

.value-item-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.value-visual {
    position: relative;
}

.value-visual img {
    width: 100%;
    border-radius: var(--card-radius);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.06);
}

/* Stats overlay on value visual */
.value-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius-sm);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--glass-shadow);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    padding: var(--section-padding) 0;
    position: relative;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.faq-left .section-heading {
    margin-bottom: 16px;
}

.faq-left .section-subtext {
    margin-bottom: 28px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--card-radius-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(91, 141, 239, 0.15);
}

.faq-item.active {
    box-shadow: var(--card-shadow);
    border-color: rgba(91, 141, 239, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: var(--fs-body);
    font-weight: 600;
    color: var(--text-primary);
    gap: 16px;
    transition: color var(--transition-base);
    user-select: none;
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.03);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--text-primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-premium), padding 0.5s var(--ease-premium);
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: var(--fs-small);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-warm);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-warm));
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-info .section-heading {
    margin-bottom: 16px;
}

.contact-info .section-subtext {
    margin-bottom: 36px;
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--card-radius-sm);
    transition: all var(--transition-base);
}

.contact-card:hover {
    transform: translateX(6px);
    box-shadow: var(--card-shadow);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card:nth-child(1) .contact-card-icon {
    background: rgba(91, 141, 239, 0.1);
    color: var(--accent-blue);
}

.contact-card:nth-child(2) .contact-card-icon {
    background: rgba(232, 160, 184, 0.1);
    color: var(--accent-rose);
}

.contact-card:nth-child(3) .contact-card-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
}

.contact-card-label {
    font-size: 0.76rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.contact-card-value {
    font-size: var(--fs-body);
    font-weight: 600;
    color: var(--text-primary);
}

/* Contact form */
.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--card-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-primary);
    font-size: var(--fs-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    outline: none;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(91, 141, 239, 0.1);
}

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

.form-submit {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.form-submit .btn {
    flex: 1;
    min-width: 200px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 141, 239, 0.15), transparent 70%);
    pointer-events: none;
    animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.final-cta .section-heading {
    color: var(--text-light);
    margin-bottom: 16px;
    position: relative;
}

.final-cta .section-subtext {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 36px;
    position: relative;
}

.final-cta .btn {
    position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 64px 0 32px;
    background: var(--bg-footer);
    color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .navbar-logo {
    color: var(--text-light);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: var(--fs-small);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
    font-size: 0.95rem;
}

.footer-social a:hover {
    background: rgba(91, 141, 239, 0.2);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col a {
    display: block;
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.4);
    padding: 5px 0;
    transition: all var(--transition-base);
}

.footer-col a:hover {
    color: var(--text-light);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition-base);
}

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

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
}

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

/* Stagger children */
.stagger-children>* {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-premium), transform 0.6s var(--ease-premium);
}

.stagger-children.revealed>*:nth-child(1) {
    transition-delay: 0.05s;
}

.stagger-children.revealed>*:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children.revealed>*:nth-child(3) {
    transition-delay: 0.15s;
}

.stagger-children.revealed>*:nth-child(4) {
    transition-delay: 0.2s;
}

.stagger-children.revealed>*:nth-child(5) {
    transition-delay: 0.25s;
}

.stagger-children.revealed>*:nth-child(6) {
    transition-delay: 0.3s;
}

.stagger-children.revealed>*:nth-child(7) {
    transition-delay: 0.35s;
}

.stagger-children.revealed>*:nth-child(8) {
    transition-delay: 0.4s;
}

.stagger-children.revealed>*:nth-child(9) {
    transition-delay: 0.45s;
}

.stagger-children.revealed>*:nth-child(10) {
    transition-delay: 0.5s;
}

.stagger-children.revealed>* {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .value-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .value-visual {
        order: -1;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .navbar-cta .btn-secondary {
        display: none;
    }

    .navbar-hamburger {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-float-card {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .templates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 8px;
    }

    .stat-card {
        padding: 14px 10px;
    }

    .contact-form-wrapper {
        padding: 28px 24px;
    }

    .form-submit {
        flex-direction: column;
    }

    .form-submit .btn {
        min-width: auto;
    }

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

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

    .footer-bottom-links {
        justify-content: center;
    }
}

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

    .value-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .hero-mockup {
        margin: 0 -10px;
    }
}

/* ============================================================
   UTILITY ANIMATIONS
   ============================================================ */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-lavender), var(--accent-gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all var(--transition-base);
    cursor: pointer;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.55), 0 0 0 12px rgba(37, 211, 102, 0.08);
    }
}

/* Scroll to Top button */
.scroll-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    z-index: 900;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--card-bg);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: all 0.4s var(--ease-premium);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
    background: var(--text-primary);
    color: var(--text-light);
}

/* Smooth scrollbar (webkit) */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}