:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-light: #1e1e1e;
    --orange: #ff6b00;
    --orange-hover: #ff8533;
    --white: #ffffff;
    --gray: #a1a1a1;
    --gray-light: #d4d4d4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-orange {
    color: var(--orange);
}

.section-padding {
    padding: 100px 0;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-light);
    transition: color 0.3s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-phone {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-phone:hover {
    color: var(--orange);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 70% 50%, #1a1a1a 0%, #0a0a0a 70%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
    z-index: 1;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.15);
    color: var(--orange);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--orange);
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

h1 span {
    background: linear-gradient(135deg, #ff6b00, #ffb380);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 500px;
}



@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

/* HERO VISUAL MOCKUP */
.hero-visual {
    position: relative;
    /* Ensure z-index is handled */
    z-index: 5;
    /* Perspective for 3D */
    perspective: 1000px;
}

.phone-frame.tiktok-mockup {
    width: 320px;
    height: 640px;
    background: #000;
    border: 14px solid #222;
    border-radius: 48px;
    position: relative;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 107, 0, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: rotateY(-12deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tiktok-mockup:hover {
    transform: rotateY(-8deg) rotateX(2deg) scale(1.02);
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #222;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Darken image slightly */
    filter: brightness(0.85);
}

/* TikTok Overlay UI */
.tiktok-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 30px 20px 60px;
    color: white;
}

.tiktok-stat {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.tiktok-stat span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tiktok-icons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.icon-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.icon-group svg {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.2s;
}

.icon-group:hover svg {
    transform: scale(1.15);
}

.icon-group span {
    font-size: 0.8rem;
    font-weight: 600;
}


/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    animation: floatBadge 6s ease-in-out infinite;
    min-width: 180px;
}

.badge-top {
    top: 60px;
    left: -60px;
    animation-delay: 0s;
}

.badge-bottom {
    bottom: 80px;
    right: -40px;
    animation-delay: 2s;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 0, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.1;
}

.badge-sub {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes floatBadge {

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

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

.fire-icon {
    animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 107, 0, 0.5));
    }

    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.8));
    }
}



.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* PROBLEM / SOLUTION */
.pain-points {
    background: var(--dark);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.problem-card {
    background: var(--black);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.problem-card:hover .problem-icon {
    background: var(--orange);
    color: var(--white);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.problem-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* CASE STUDIES */
.case-studies {
    background: var(--black);
}

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

.case-card {
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.case-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.case-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.case-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.case-info {
    padding: 30px;
}

.case-stat {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
    display: block;
}

.case-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.case-desc {
    color: var(--gray);
    font-size: 0.95rem;
}

/* OFFER / PRICING */
.pricing {
    background: var(--dark);
}

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

.price-card {
    background: var(--black);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
}

.price-card.featured {
    transform: scale(1.05);
    border-color: var(--orange);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.15);
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 30px;
}

.price-val span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin-bottom: 40px;
}

.price-features li {
    margin-bottom: 12px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li svg {
    width: 20px;
    height: 20px;
    fill: var(--orange);
    flex-shrink: 0;
}

/* ABOUT ME */
.about-section {
    background: var(--black);
}

.about-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 24px;
    /* filter: grayscale(100%);  Removed per user request */
    /* transition: filter 0.5s; */
}


.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.stat span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

/* TESTIMONIALS */
.testimonials {
    background: var(--black);
    position: relative;
    /* subtle separation */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-grid {
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: var(--dark);
    padding: 50px;
    border-radius: 24px;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    text-align: center;
}

.testimonial-icon {
    font-size: 4rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 24px;
    font-family: serif;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: inline-block;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}

.author-role {
    display: block;
    font-size: 0.9rem;
    color: var(--orange);
    margin-top: 4px;
}

/* FAQ */
.faq {
    background: var(--dark);
}

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

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--white);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--orange);
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 24px;
    color: var(--gray);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* CONTACT */
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('bmw_detail.png');
    background-size: cover;
    background-position: center;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(17, 17, 17, 0.95);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
}

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

.checkbox-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.checkbox-group input {
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.4;
}

/* Pulse Tag for Scroll Stop */
.pulse-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 50px;
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

/* Card Stats */
.card-stat {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--gray);
    letter-spacing: 1px;
    margin-top: 5px;
}

.card-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.card-link:hover {
    transform: translateX(5px);
}

.problem-card h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: var(--black);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--gray);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-badge {
        margin: 0 auto 24px;
    }

    .hero-actions {
        justify-content: center;
    }

    .cards-grid,
    .pricing-grid,
    .case-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

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

    .footer-cols {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-links {
        display: none;
    }
}

/* MOBILE FIXES (max-width: 768px) */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .section-padding {
        padding: 60px 0;
    }

    .container {
        padding: 0 24px;
    }

    /* GLOBAL OVERFLOW FIX */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* HERO */
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 40px;
        align-items: flex-start;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }

    .hero-text {
        margin: 0 auto;
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 16px;
        align-items: stretch;
    }

    .hero-visual {
        width: 100%;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    /* PHONE ANIMATION FIX */
    .phone-frame {
        width: 220px;
        height: 440px;
        transform: rotateY(-5deg) rotateX(2deg);
        margin: 0 auto;
    }

    /* NAV */
    nav {
        padding: 15px 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    nav .btn {
        padding: 8px 16px !important;
        font-size: 0.85rem;
    }

    /* ABOUT ME FIX */
    .about-img {
        max-width: 90%;
        margin: 0 auto;
    }
}