/* ===========================
   M1CREATIVE. — Global Reset & Variables
   =========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-light: #f5f5f0;
    --text-white: #ffffff;
    --text-light: #c0c0c0;
    --text-dark: #1a1a1a;
    --accent: #c8ff00;
    --accent-secondary: #a0d4ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-display: 'Permanent Marker', cursive;
    --font-body: 'Inter', -apple-system, sans-serif;
    --section-pad: clamp(60px, 10vh, 120px);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===========================
   Loader
   =========================== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-white);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

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

.loader-bar-container {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    border-radius: 3px;
    animation: loadBar 2s ease-in-out forwards;
}

@keyframes loadBar {
    0% {
        width: 0%;
    }

    50% {
        width: 60%;
    }

    100% {
        width: 100%;
    }
}

.loader-text {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===========================
   Three.js Canvas
   =========================== */
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===========================
   Navigation
   =========================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s ease;
    mix-blend-mode: difference;
}

#navbar.scrolled {
    padding: 15px 40px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    mix-blend-mode: normal;
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: 1px;
    cursor: pointer;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: var(--accent) !important;
    color: var(--bg-dark) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(200, 255, 0, 0.3);
    color: var(--bg-dark) !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--accent);
}

/* ===========================
   Sections
   =========================== */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-pad) 40px;
    z-index: 1;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section-tag {
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-tag.dark {
    color: var(--bg-dark);
    opacity: 0.5;
}

/* ===========================
   Hero Section
   =========================== */
.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 2.2s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 1.05;
    margin-bottom: 30px;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
}

.hero-title .line-1 {
    animation: fadeUp 1s ease 2.4s forwards;
}

.hero-title .line-2 {
    animation: fadeUp 1s ease 2.6s forwards;
}

.hero-title .line-3 {
    animation: fadeUp 1s ease 2.8s forwards;
}

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 3s forwards;
}

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

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 1s ease 3.3s forwards;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 3px;
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.3;
    }
}

/* ===========================
   Big Text / Section Headings
   =========================== */
.big-text {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 7rem);
    line-height: 1.1;
    margin-bottom: 50px;
}

.big-text .word {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.big-text .word.visible {
    opacity: 1;
    transform: translateY(0);
}

.big-text em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark-text .word {
    color: var(--text-dark);
}

.dark-text em {
    background: linear-gradient(135deg, #1a1a1a, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   About Section
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-description.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 25px 30px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.stat-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.stat-card:nth-child(2).visible {
    transition-delay: 0.15s;
}

.stat-card:nth-child(3).visible {
    transition-delay: 0.3s;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent);
    min-width: 80px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* ===========================
   Services Section
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(2).visible {
    transition-delay: 0.1s;
}

.service-card:nth-child(3).visible {
    transition-delay: 0.2s;
}

.service-card:nth-child(4).visible {
    transition-delay: 0.3s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-card:hover {
    border-color: rgba(200, 255, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(200, 255, 0, 0.08);
}

.service-number {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 15px;
    opacity: 0.6;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-icon {
    position: absolute;
    bottom: 25px;
    right: 30px;
    width: 40px;
    height: 40px;
    color: var(--accent);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
    opacity: 0.7;
}

/* ===========================
   Work / Portfolio Section
   =========================== */
.work-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.work-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.work-item:nth-child(2).visible {
    transition-delay: 0.15s;
}

.work-item:nth-child(3).visible {
    transition-delay: 0.3s;
}

.work-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.work-image {
    aspect-ratio: 3/4;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.work-image:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.work-preview-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 6px;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.work-image:hover .work-preview-badge {
    opacity: 0;
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    z-index: 2;
}

.work-category {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}

.work-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.work-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.work-image:hover .work-desc {
    opacity: 1;
    transform: translateY(0);
}

.work-cta {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.2s;
}

.work-image:hover .work-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Contact / Lead Capture Section
   =========================== */
.section-light {
    background: var(--bg-light);
    z-index: 2;
    position: relative;
}

.contact-form {
    max-width: 800px;
    position: relative;
}

.form-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.form-service-option {
    cursor: pointer;
}

.form-service-option input {
    display: none;
}

.service-pill {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    user-select: none;
}

.service-pill:hover {
    border-color: #999;
}

.form-service-option input:checked+.service-pill {
    background: var(--text-dark);
    color: var(--text-white);
    border-color: var(--text-dark);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    margin-bottom: 40px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    font-family: var(--font-body);
    background: transparent;
    border: none;
    border-bottom: 2px solid #ddd;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    resize: none;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-dark);
    transition: width 0.4s ease;
}

.form-group input:focus~.form-line,
.form-group textarea:focus~.form-line {
    width: 100%;
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--text-dark);
    color: var(--text-white);
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon svg {
    transform: translateX(5px);
}

.form-success {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.form-success.show {
    opacity: 1;
    visibility: visible;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--text-dark);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    animation: successPop 0.5s ease;
}

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

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-success p {
    color: #666;
    font-size: 1rem;
}

/* ===========================
   Pricing Section
   =========================== */
.pricing-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 550px;
    line-height: 1.7;
}

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

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:nth-child(2).visible {
    transition-delay: 0.1s;
}

.pricing-card:nth-child(3).visible {
    transition-delay: 0.2s;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
    transition: height 0.5s ease;
}

.pricing-card[data-tier="bronze"]::before {
    background: linear-gradient(90deg, #CD7F32, #E8A860);
}

.pricing-card[data-tier="silver"]::before {
    background: linear-gradient(90deg, #C0C0C0, #E8E8E8);
}

.pricing-card[data-tier="gold"]::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.pricing-card:hover::before {
    height: 5px;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Featured Card (Silver) */
.pricing-card.featured {
    border-color: rgba(200, 255, 0, 0.25);
    background: rgba(200, 255, 0, 0.03);
    transform: scale(1.04);
}

.pricing-card.featured.visible {
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.06) translateY(-5px);
    box-shadow: 0 30px 80px rgba(200, 255, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 50px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(200, 255, 0, 0); }
}

.pricing-tier-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
}

.pricing-card[data-tier="bronze"] .pricing-tier-icon {
    color: #CD7F32;
}

.pricing-card[data-tier="silver"] .pricing-tier-icon {
    color: #C0C0C0;
}

.pricing-card[data-tier="gold"] .pricing-tier-icon {
    color: #FFD700;
}

.pricing-tier-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-card[data-tier="bronze"] .pricing-tier-label {
    color: #CD7F32;
}

.pricing-card[data-tier="silver"] .pricing-tier-label {
    color: #C0C0C0;
}

.pricing-card[data-tier="gold"] .pricing-tier-label {
    color: #FFD700;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
}

.price-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-white);
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: 4px;
}

.pricing-monthly {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 28px;
}

.pricing-monthly span {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.pricing-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--accent);
}

.pricing-best-for {
    font-size: 0.78rem;
    color: var(--text-light);
    opacity: 0.6;
    margin-bottom: 24px;
    font-style: italic;
}

.pricing-cta {
    width: 100%;
    padding: 15px 24px;
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    background: transparent;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.6s ease;
}

.pricing-cta:hover::before {
    left: 100%;
}

.pricing-cta:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 30px rgba(200, 255, 0, 0.1);
    transform: scale(1.02);
}

.pricing-cta.featured-cta {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    font-weight: 700;
}

.pricing-cta.featured-cta:hover {
    background: #d4ff33;
    color: var(--bg-dark);
    box-shadow: 0 0 40px rgba(200, 255, 0, 0.3);
    transform: scale(1.04);
}

/* ===========================
   Checkout Modal
   =========================== */
.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.checkout-overlay.active {
    opacity: 1;
    visibility: visible;
}

.checkout-modal {
    background: #111111;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-overlay.active .checkout-modal {
    transform: translateY(0) scale(1);
}

/* Custom scrollbar for checkout modal */
.checkout-modal::-webkit-scrollbar {
    width: 4px;
}
.checkout-modal::-webkit-scrollbar-track {
    background: transparent;
}
.checkout-modal::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.checkout-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.checkout-close svg {
    width: 18px;
    height: 18px;
}

.checkout-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 24px;
}

.checkout-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.checkout-badge[data-tier="bronze"] {
    background: linear-gradient(135deg, #CD7F32, #E8A860);
    color: #1a1a1a;
}

.checkout-badge[data-tier="silver"] {
    background: linear-gradient(135deg, #C0C0C0, #E8E8E8);
    color: #1a1a1a;
}

.checkout-badge[data-tier="gold"] {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
}

.checkout-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.checkout-package-name {
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkout-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 28px;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.checkout-summary-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-summary-row.total {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    padding-top: 14px;
}

.checkout-summary-row.total span:last-child {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.checkout-form {
    position: relative;
}

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

.checkout-form-group input,
.checkout-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    outline: none;
    transition: all 0.3s ease;
}

.checkout-form-group textarea {
    resize: none;
}

.checkout-form-group input:focus,
.checkout-form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(200, 255, 0, 0.03);
    box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.06);
}

.checkout-form-group label {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
}

.checkout-form-group input:focus ~ label,
.checkout-form-group input:not(:placeholder-shown) ~ label,
.checkout-form-group textarea:focus ~ label,
.checkout-form-group textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    left: 12px;
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
    background: #111111;
    padding: 0 6px;
}

.checkout-form-group.full {
    margin-bottom: 24px;
}

.checkout-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.checkout-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.checkout-submit:hover::before {
    left: 100%;
}

.checkout-submit:hover {
    background: #d4ff33;
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(200, 255, 0, 0.3);
}

.checkout-submit .btn-icon svg {
    width: 18px;
    height: 18px;
}

.checkout-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-light);
    opacity: 0.5;
    margin-top: 14px;
    line-height: 1.5;
}

.checkout-success {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.checkout-success.show {
    opacity: 1;
    visibility: visible;
}

.checkout-success .success-icon {
    background: var(--accent);
    color: var(--bg-dark);
}

.checkout-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.checkout-success p {
    color: var(--text-light);
    font-size: 1rem;
    text-align: center;
    max-width: 300px;
}

/* ===========================
   Footer
   =========================== */
#footer {
    background: var(--bg-dark);
    padding: 80px 40px 40px;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

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

.footer-brand p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--text-white);
}

.social-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.social-link svg {
    flex-shrink: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover svg {
    color: var(--accent);
    transform: scale(1.15);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.5;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

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

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

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .checkout-modal {
        padding: 28px 20px;
    }

    .work-showcase {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

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

    .section {
        padding: var(--section-pad) 20px;
    }

    #navbar {
        padding: 15px 20px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .big-text {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .service-card {
        padding: 25px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .price-amount {
        font-size: 2.4rem;
    }

    .form-services {
        gap: 8px;
    }

    .service-pill {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ===========================
   Custom Cursor (Desktop)
   =========================== */
@media (hover: hover) {
    .cursor-glow {
        position: fixed;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(200, 255, 0, 0.06), transparent 70%);
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease;
    }
}

/* ===========================
   Checkout — Loading & Error States
   =========================== */
.checkout-submit:disabled {
    cursor: not-allowed;
    opacity: 0.8;
    transform: none !important;
    box-shadow: none !important;
}

.checkout-submit:disabled::before {
    display: none;
}

.checkout-submit .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.checkout-submit .btn-loading .spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

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

.checkout-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: #ef4444;
    line-height: 1.5;
    animation: shakeError 0.4s ease;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

/* ===========================
   Payment Result Pages (Success / Cancel)
   =========================== */
.result-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    padding: 20px;
}

.result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 520px;
    animation: resultFadeIn 0.8s ease;
}

@keyframes resultFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px 40px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
}

.result-brand .nav-logo {
    text-align: center;
    opacity: 0.4;
    font-size: 1.2rem;
}

/* Animated Checkmark */
.result-icon-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
}

.result-checkmark,
.result-xmark {
    width: 72px;
    height: 72px;
}

.checkmark-circle {
    stroke: #22c55e;
    stroke-width: 2;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: drawCircle 0.6s ease forwards;
}

.checkmark-check {
    stroke: #22c55e;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.4s ease 0.5s forwards;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* Animated X mark */
.xmark-circle {
    stroke: #ef4444;
    stroke-width: 2;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: drawCircle 0.6s ease forwards;
}

.xmark-x {
    stroke: #ef4444;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: drawCheck 0.3s ease 0.5s forwards;
}

.xmark-x:nth-child(3) {
    animation-delay: 0.65s;
}

/* Result page typography */
.result-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    color: var(--text-white);
    margin-bottom: 8px;
}

.result-subtitle {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 500;
}

.result-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.result-description strong {
    color: var(--text-white);
}

/* Result details */
.result-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 28px;
}

.result-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.result-detail-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.detail-value {
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 600;
}

.success-value {
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Next steps */
.result-next-steps {
    text-align: left;
    margin-bottom: 32px;
}

.result-next-steps h3 {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 600;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.next-step:last-child {
    border-bottom: none;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(200, 255, 0, 0.1);
    border: 1px solid rgba(200, 255, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.next-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Result buttons */
.result-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
}

.success-btn {
    background: var(--accent);
    color: var(--bg-dark);
}

.success-btn:hover {
    background: #d4ff33;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(200, 255, 0, 0.3);
}

.result-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.retry-btn {
    background: var(--accent);
    color: var(--bg-dark);
}

.retry-btn:hover {
    background: #d4ff33;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(200, 255, 0, 0.3);
}

.contact-btn {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}

.contact-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.05);
}

.result-help {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.result-help p {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.6;
}

.result-help a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.result-help a:hover {
    opacity: 0.8;
}

/* Result page responsive */
@media (max-width: 600px) {
    .result-card {
        padding: 36px 24px;
    }

    .result-actions {
        flex-direction: column;
    }

    .result-btn {
        width: 100%;
    }
}