* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background: #f9f9f9;
    color: #111;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;

    width: 100%;
    margin: 0;
    border-radius: 0 !important;
    overflow: visible;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    padding: 16px 32px;

    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 0 0 22px 22px;

    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* NAV LINKS */
.nav-center a {
    margin: 0 15px;
    text-decoration: none;
    color: #111;
    font-size: 15px;
}

/* CTA */
.cta-btn {
    background: linear-gradient(135deg, #ff5a3d, #ff2d20);
    color: white;
    border: none;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;

    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn .arrow {
    font-size: 18px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ff6b4a, #ff2d20);

    box-shadow: 0 10px 30px rgba(255,95,61,0.3);
}

/* HERO */
.hero {
    text-align: center;
    padding: 140px 20px 160px;
    min-height: 85vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tag {
    background: #eee;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
}

.hero h1 {
    margin-top: 26px;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.08;
    font-weight: 800;
    max-width: 1000px;
}

.hero {
    min-height: auto;
    padding: 60px 20px 80px;
}
.highlight {
    color: red;
}

.subtext {
    margin-top: 28px;
    color: #555;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.5;
    max-width: 950px;
}
.hero-btn {
    margin-top: 25px;
    background: linear-gradient(135deg, #ff5a3d, #ff2d20);
    color: white;
    border: none;

    padding: 18px 34px;
    border-radius: 999px;

    font-size: 18px;
    font-weight: 700;

    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .navbar {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 16px 18px;
        row-gap: 14px;
        column-gap: 10px;
    }

    .nav-left {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .nav-right {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        justify-content: flex-end;
    }

    .nav-center {
        grid-column: 1 / -1;
        grid-row: 2;
        display: flex;
        justify-content: center;
        gap: 28px;
    }

    .logo img {
        height: 34px;
    }

    .logo span {
        font-size: 20px;
        white-space: nowrap;
    }

    .cta-btn {
        padding: 10px 18px;
        font-size: 14px;
        white-space: nowrap;
    }

    .nav-center a {
        margin: 0;
        font-size: 14px;
    }

    .hero h1 {
        font-size: clamp(42px, 10vw, 58px);
    }
}

.results-section {
    text-align: center;
    padding: 80px 20px;
}

.results-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.highlight {
    color: #ff2b2b;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: auto;
}

.result-box {
    background: #f1f1f1;
    padding: 30px;
    border-radius: 20px;
    border: 1px dashed #ddd;
}

.result-box h3 {
    font-size: 32px;
    color: #ff2b2b;
}

.result-box p {
    margin-top: 10px;
    color: #333;
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .result-box {
        padding: 22px 12px;
        border-radius: 16px;
    }

    .result-box h3 {
        font-size: 26px;
    }

    .result-box p {
        font-size: 13px;
        margin-top: 8px;
    }

    .results-section h2 {
        font-size: 26px;
        line-height: 1.25;
    }
}

.portfolio-section {
    padding: 80px 0;
    text-align: center;
    background: #ffffff;
    overflow: hidden;
}

.portfolio-section h2 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
}

.portfolio-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.portfolio-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: portfolioMove 35s linear infinite;
}

.portfolio-marquee:hover .portfolio-track,
.portfolio-marquee:active .portfolio-track {
    animation-play-state: paused;
}

.video-card {
    width: 450px;
    flex: 0 0 auto;
    background: #0f0f0f;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;

    transform: translateZ(0);
    will-change: transform;

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
    transform: none;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

.video-card img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    display: block;

    border-radius: 14px 14px 0 0;
}

.video-info {
    padding: 12px 14px 16px;
    background: #0f0f0f;

    border-radius: 0 0 14px 14px;
}

.video-info h3 {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.video-info p {
    font-size: 18px;
    color: #bdbdbd;
}

@keyframes portfolioMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }

    .portfolio-section h2 {
        margin-bottom: 28px;
    }

    .portfolio-track {
        gap: 18px;
        animation-duration: 42s;
    }

    .video-card {
        width: 250px;
    }

    .video-card img {
        height: 142px;
    }
}
.testimonial-section {
    padding: 60px 20px 10px;
    text-align: center;
    background: #f9f9f9;
}

.testimonial-section h2 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: #111;
}
.portfolio-section {
    padding: 60px 0 20px;
}

.testimonial-section {
    padding: 40px 40px 20px;
}

.testimonial-section h2 {
    margin-bottom: 10px;
}

.results-section {
    padding: 30px 20px 60px;
}

.results-section h2 {
    margin-top: 0;
}
.youtube-proof-section {
    padding: 70px 20px 90px;
    background: #f9f9f9;
    text-align: center;
}

.youtube-proof-section h2 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 800;
    color: #111;
    margin-bottom: 14px;
}

.youtube-proof-subtext {
    font-size: 18px;
    color: #444;
    margin-bottom: 50px;
}

.youtube-proof-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.proof-video-card {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #111;
    border: 8px solid #ffffff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;

    pointer-events: none;
    cursor: default;
}

.proof-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.proof-video-card img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
    .youtube-proof-section {
        padding: 50px 16px 70px;
    }

    .youtube-proof-subtext {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .youtube-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .proof-video-card {
        border-width: 5px;
        border-radius: 14px;
    }
}

.client-review-section {
    padding: 70px 0 90px;
    background: #f9f9f9;
    overflow: hidden;
}

.review-label {
    text-align: center;
    color: #ff2b2b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 36px;
}

.review-marquee {
    width: 100%;
    overflow: hidden;
}

.review-track {
    display: flex;
    gap: 26px;
    width: max-content;
    animation: reviewMove 42s linear infinite;
}

.review-marquee:hover .review-track,
.review-marquee:active .review-track {
    animation-play-state: paused;
}

.review-card {
    width: 390px;
    min-height: auto;
    flex: 0 0 auto;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.review-header img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.review-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.review-header p {
    font-size: 15px;
    color: #666;
}

.review-text {
    font-size: 18px;
    line-height: 1.65;
    color: #555;
}

@keyframes reviewMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .client-review-section {
        padding: 50px 0 70px;
    }

    .review-label {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 24px;
    }

    .review-track {
        gap: 18px;
        animation-duration: 50s;
    }

    .review-card {
        width: 310px;
        min-height: auto;
        padding: 22px;
    }

    .review-header {
        gap: 13px;
        margin-bottom: 0;
    }

    .review-header img {
        width: 50px;
        height: 50px;
    }

    .review-header h3 {
        font-size: 16px;
    }

    .review-header p {
        font-size: 13px;
    }

    .review-text {
        font-size: 15px;
        line-height: 1.55;
    }
}
.faq-section {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.faq-header {
    margin-bottom: 40px;
}

.faq-badge {
    display: inline-block;
    background: #ffe5e5;
    color: #ff2b2b;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.faq-header h2 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
}

.faq-container {
    max-width: 800px;
    margin: auto;
    background: #ffffff;
    border-radius: 20px;
    border: 1px dashed #ddd;
    padding: 20px;
}

.faq-item {
    border-bottom: 1px dashed #ddd;
    text-align: left;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    padding: 18px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
}

.faq-answer {
    padding: 0 18px 18px;
    display: none;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    color: #ff2b2b;
}

.faq-icon {
    font-size: 18px;
}

.faq-cta {
    margin-top: 40px;
    text-align: center;
}

.faq-cta p {
    margin-bottom: 14px;
    color: #555;
}

.faq-cta .cta-btn {
    display: inline-block;
}
.contact-screen {
    display: none;
    min-height: 100vh;
    background: #050505;
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.contact-screen.active {
    display: flex;
}

.contact-box {
    max-width: 760px;
}

.small-line {
    color: #777;
    font-style: italic;
    margin-bottom: 40px;
}

.contact-box h1 {
    font-size: clamp(54px, 9vw, 120px);
    font-weight: 700;
    margin-bottom: 28px;
}

.contact-box h1 span {
    color: #777;
}

.contact-box p {
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.5;
    color: #eeeeee;
    margin-bottom: 45px;
}

.contact-btn {
    display: inline-block;
    padding: 18px 34px;
    border-radius: 50px;
    background: #ff3b30;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border: 8px solid #333;
}

.contact-btn:hover {
    background: #111;
}
.contact-screen {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.16), transparent 26%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.06), transparent 28%),
        #050505;
}

.contact-screen::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 65%);
    top: 8%;
    left: 18%;
    filter: blur(45px);
    animation: slowLight 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.contact-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.18;
    pointer-events: none;
}

.contact-box {
    position: relative;
    z-index: 2;
}

@keyframes slowLight {
    from {
        transform: translate(-30px, -20px) scale(1);
        opacity: 0.55;
    }

    to {
        transform: translate(80px, 45px) scale(1.15);
        opacity: 0.85;
    }
}
.back-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background: transparent;
    color: white;
    border: 1px solid #444;
    padding: 10px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
    z-index: 5;
}

.back-btn:hover {
    background: #111;
}
/* RESPONSIVE TEXT FIX */
.testimonial-section h2 {
    font-size: clamp(34px, 8vw, 58px);
}

.results-section h2 {
    font-size: clamp(24px, 6vw, 36px);
    line-height: 1.2;
}

.result-box h3 {
    font-size: clamp(24px, 6vw, 32px);
}

.result-box p {
    font-size: clamp(12px, 3.5vw, 16px);
}

.youtube-proof-section h2 {
    font-size: clamp(24px, 6vw, 56px);
    line-height: 1.1;
    white-space: nowrap;
}

.youtube-proof-subtext {
    font-size: clamp(13px, 3.5vw, 18px);
}

.faq-header h2 {
    font-size: clamp(26px, 7vw, 54px);
    line-height: 1.15;
}

.review-label {
    font-size: clamp(11px, 3vw, 14px);
}

/* EXTRA SMALL MOBILE FIX */
@media (max-width: 480px) {
    .youtube-proof-section h2 {
        font-size: clamp(20px, 5.6vw, 28px);
    }

    .results-section h2 {
        font-size: clamp(22px, 6vw, 28px);
    }

    .result-box h3 {
        font-size: clamp(22px, 6vw, 28px);
    }

    .result-box p {
        font-size: 12px;
    }
}
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 34px;
}

.nav-center a {
    font-size: 17px;
    font-weight: 700;

    transition:
        color 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;
}

.nav-center a:hover{
    color: #ff5a3d;
}

.logo img {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.logo span {
    font-size: 20px;
    font-weight: 800;
}
@media (max-width: 768px) {

    
    .navbar {
       position: sticky;
        top: 0;

        width: calc(100% - 20px);
        margin: 0 auto;

        border-radius: 0 !important;
        overflow: visible;
    }
       
    .nav-left {
        grid-column: 1;
        grid-row: 1;
    }

    .nav-right {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        justify-content: flex-end;
    }

    .nav-center {
        grid-column: 1 / -1;
        grid-row: 2;

        display: flex;
        justify-content: center;
        gap: 18px;

        transform: none;
        flex-wrap: wrap;
    }

    .nav-center a {
        font-size: 13px;
        font-weight: 600;
    }

    .logo img {
        height: 32px;
        width: 32px;
    }

    .logo span {
        font-size: 19px;
        white-space: nowrap;
    }

    .cta-btn {
        padding: 10px 16px;
        font-size: 14px;
        white-space: nowrap;
    }

    .hero h1 {
        font-size: 28px;
    }
}
/* NAVBAR POSITION FIX */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 34px;
}

.nav-center a {
    font-size: 17px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .logo {
        margin-left: 0;
    }

    .nav-center {
        transform: none;
        gap: 18px;
    }

    .nav-center a {
        font-size: 13px;
    }

    .nav-right {
        margin-right: 0;
    }
}
#portfolio,
#testimonial,
#faq,
#about {
    scroll-margin-top: 50px;
}
/* ABOUT SECTION */
.about-section {
    padding: 60px 20px 100px;
    text-align: center;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
}

.about-section p {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.7;
    color: #555;
    max-width: 850px;
    margin: 0 auto;
}
.results-button {
    margin-top: 28px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* ABOUT CARD */
.about-section {
    padding: 90px 20px 120px;
    text-align: center;
}

.about-section h2 {
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 800;
    color: #111;
    margin-bottom: 50px;
}

.about-card {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(255, 95, 61, 0.15);
    border-radius: 28px;
    padding: 50px;
    text-align: left;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.04),
        0 2px 10px rgba(255,95,61,0.05);
}

.about-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ff5f3d;
    margin-bottom: 18px;
}

.about-card h3 {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    margin-bottom: 18px;
    color: #111;
}

.about-card h4 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.25;
    margin-bottom: 28px;
    color: #222;
    max-width: 580px;
}

.about-card h4 span {
    color: #ff5f3d;
}

.about-card p {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.9;
    color: #555;
    margin-bottom: 24px;
}

.about-proof-btn {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff5f3d, #ff2d20);
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.about-proof-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,95,61,0.3);
}

/* MOBILE */
@media (max-width: 768px) {

    .about-card {
        padding: 34px 26px;
        border-radius: 24px;
    }

    .about-card h3 {
        font-size: 42px;
    }

    .about-card h4 {
        font-size: 28px;
    }

    .about-proof-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* MODERN ABOUT SECTION */
.about-modern{
    max-width: 1200px;
    margin: 45px auto 0;
    padding: 0 20px;
    text-align: left;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}
.about-left{
    width: 100%;
}

.about-right{
    width: 100%;
}

.about-right img{
    width: 100%;
    display: block;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.about-tag{
    font-size: 16px;
    letter-spacing: 5px;
    font-weight: 700;
    color: #ff5a3d;
    margin-bottom: 18px;
}

.about-name{
    font-size: clamp(52px, 6vw, 78px);
    line-height: 0.92;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.about-headline{
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 500;
    line-height: 1.15;
    color: #111;
    margin-bottom: 18px;
}

.about-headline span{
    color: #ff5a3d;
    position: relative;
    display: inline-block;
}

.about-headline span::after{
    content: "";
    position: absolute;

    left: 0;
    bottom: 2px;

    width: 100%;
    height: 3px;

    background: #ff5a3d;
    border-radius: 999px;
}

.about-categories{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 34px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(0,0,0,0.72);
}

.about-text{
    max-width: 690px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(0,0,0,0.72);
    margin: 0 0 34px 0;
}

/* MOBILE */

@media (max-width: 768px){

    .about-modern{
        margin-top: 35px;
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-right{
       order: -1;
    }

    .about-right img{
       border-radius: 20px;
    }

    .about-name{
        font-size: 52px;
    }

    .about-headline{
        font-size: 28px;
    }

    .about-text{
        font-size: 16px;
        line-height: 1.7;
    }

    .about-categories{
        gap: 10px;
        letter-spacing: 2px;
    }
}
/* REMOVE BLUE CLICK OUTLINE */

*{
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus{
    outline: none !important;
    box-shadow: none !important;
}
.hero-btn{
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.18);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.hero-btn:hover::before{
    left: 120%;
}

.hero-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 90, 61, 0.28);
}

/* FOOTER */

.site-footer{
    padding: 34px 12%;
    background: #f9f9f9;
    border-top: 1px solid rgba(0,0,0,0.08);

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 30px;
}

.footer-left{
    justify-self: start;
}

.footer-brand{
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.footer-logo-img{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-left p{
    color: #666;
    font-size: 15px;
    white-space: nowrap;
}

.footer-links{
    justify-self: start;
    margin-left: 80px;
    display: flex;
    align-items: center;
    gap: 34px;

    margin-top: 9px;
}

.footer-links a{
    text-decoration: none;
    color: #111;
    font-size: 17px;
    font-weight: 700;

    transition:
        color 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;
}

.footer-links a:hover{
    color: #ff5a3d;
}

@media (max-width: 768px){
    .site-footer{
        padding: 32px 20px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-left,
    .footer-links{
        justify-self: center;
    }

    .footer-brand{
        justify-content: center;
    }

    .footer-links{
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
        margin-top: 10px;
    }
}
/* TRUST VIDEO SECTION */

.trust-video-section{
    padding: 70px 40px 80px;
    background: #f9f9f9;
    text-align: center;
}

.trust-label{
    display: inline-block;
    background: #ffe1dc;
    color: #ff5a3d;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.trust-video-section h2{
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.trust-video-section h2 span{
    color: #ff5a3d;
}

.trust-subtext{
    max-width: 760px;
    margin: 0 auto 34px;
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}

.trust-video-grid{
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.trust-video-card{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: #111;
    border: 5px solid rgba(255,255,255,0.7);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.trust-video-card img{
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.trust-play{
    position: absolute;
    inset: 0;
    margin: auto;

    width: 52px;
    height: 52px;
    border-radius: 50%;

    background: #ff2d20;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    padding-left: 4px;
}

@media (max-width: 768px){
    .trust-video-section{
        padding: 55px 16px 65px;
    }

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

/* SIMPLE MESSAGE PAGE */

.contact-screen{
    display: none;
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 8%, rgba(255,255,255,0.22), transparent 28%),
        radial-gradient(circle at 40% 20%, rgba(255,255,255,0.08), transparent 32%),
        #050505;
    color: white;

    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 40px 20px;
    overflow: hidden;
}

.contact-screen.active{
    display: flex;
}

.contact-box{
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.contact-small-title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 42px;
}

.contact-small-title span{
    width: 72px;
    height: 1px;
    background: rgba(255,255,255,0.22);
}

.contact-small-title p{
    color: rgba(255,255,255,0.45);
    font-size: 20px;
    font-style: italic;
}

.contact-box h1{
    font-size: clamp(44px, 6vw, 88px);
    font-weight: 300;
    line-height: 1;
    color: #fff;
    margin-bottom: 26px;
    white-space: nowrap;
}

.contact-box h1 span{
    color: rgba(255,255,255,0.45);
}

.contact-box > p{
    color: rgba(255,255,255,0.86);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.5;
    margin-bottom: 34px;
}

.message-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.message-buttons a{
    min-width: 145px;
    padding: 15px 24px;
    border-radius: 999px;

    background: rgba(0,0,0,0.6);
    border: 8px solid rgba(255,255,255,0.16);

    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;

    transition: 0.35s ease;
}

.message-buttons a:hover{
    transform: translateY(-3px);
    border-color: rgba(255,90,61,0.45);
    box-shadow: 0 14px 36px rgba(255,90,61,0.22);
}

.discord-info{
    display: flex;
    align-items: center;
    gap: 24px;
}

.discord-line{
    width: 1px;
    height: 42px;
    background: rgba(255,255,255,0.18);
}

.discord-info p{
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    margin: 0;
}

.discord-info strong{
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px){
    .contact-box h1{
        font-size: 42px;
    }

    .contact-small-title{
        margin-bottom: 30px;
    }

    .contact-small-title span{
        width: 44px;
    }

    .message-buttons{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .message-buttons a{
        width: 220px;
    }
}
/* MOBILE CLEAN HERO FIX */

@media (max-width: 768px){

    .navbar{
        width: 100%;
        margin: 0;
        padding: 18px 24px 22px;

        display: grid;
        grid-template-columns: 1fr auto;
        row-gap: 18px;

        background: #f9f9f9;
        box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    }

    .logo{
        margin-left: 0;
    }

    .logo span{
        font-size: 22px;
        font-weight: 800;
    }

    .nav-right{
        margin-right: 0;
    }

    .cta-btn{
        padding: 12px 18px;
        font-size: 15px;
        border-radius: 999px;
    }

    .nav-center{
        grid-column: 1 / -1;
        transform: none;
        justify-content: center;
        gap: 24px;
        flex-wrap: nowrap;
    }

    .nav-center a{
        font-size: 15px;
        font-weight: 800;
        margin: 0;
        white-space: nowrap;
    }

    .hero{
        min-height: auto;
        padding: 40px 22px 80px;
    }

    .tag{
        display: inline-block;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 17px;
        line-height: 1.45;
        text-align: left;
        border-radius: 999px;
        white-space: normal;
    }

    .hero h1{
        margin-top: 26px;
        font-size: 40px;
        line-height: 1.12;
        max-width: 390px;
    }

    .subtext{
        margin-top: 34px;
        font-size: 25px;
        line-height: 1.5;
        max-width: 360px;
    }

    .hero-btn{
        margin-top: 34px;
        padding: 18px 42px;
        font-size: 22px;
        border-radius: 999px;
    }
}
/* MOBILE FULLSCREEN MENU */

.mobile-menu-btn{
    display: none;
}

.mobile-menu-overlay{
    display: none;
}

@media (max-width: 768px){

    .nav-center,
    .nav-right{
        display: none;
    }

    .navbar{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 22px 28px;
    }

    .mobile-menu-btn{
        display: block;
        background: none;
        border: none;
        font-size: 34px;
        color: #111;
        cursor: pointer;
        line-height: 1;
    }

    .mobile-menu-overlay{
        position: fixed;
        inset: 0;
        z-index: 9999;

        display: flex;
        justify-content: center;
        align-items: center;

        background: rgba(249,249,249,0.82);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
    }

    .mobile-menu-overlay.active{
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-close-btn{
        position: absolute;
        top: 24px;
        right: 32px;

        background: none;
        border: none;
        color: #111;
        font-size: 34px;
        cursor: pointer;
    }

    .mobile-menu-links{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;

        opacity: 0;
        transform: translateY(18px);
        transition: 0.35s ease;
    }

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

    .mobile-menu-links a{
        text-decoration: none;
        color: #111;
        font-size: 24px;
        font-weight: 800;
    }

    .mobile-menu-links a:hover{
        color: #ff5a3d;
    }

    .mobile-menu-links .cta-btn{
        margin-top: 12px;
        padding: 15px 34px;
    }
}
/* CLEAN COMPACT MOBILE FOOTER */

@media (max-width: 768px){

    .site-footer{
        padding: 38px 20px 42px;
        background: #f1eee6;
        border-top: 1px solid rgba(0,0,0,0.06);

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 18px;
        text-align: center;
    }

    .footer-left{
        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 10px;
    }

    .footer-brand{
        display: flex;
        align-items: center;
        justify-content: center;

        gap: 10px;
        margin-bottom: 0;
    }

    .footer-logo-img{
        width: 34px;
        height: 34px;
    }

    .footer-brand span{
        font-size: 18px;
        font-weight: 800;
        line-height: 1;
    }

    .footer-left p{
        font-size: 14px;
        color: rgba(0,0,0,0.58);
        margin: 0;
        line-height: 1.45;
        max-width: 240px;
    }

    .footer-links{
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;

        flex-wrap: wrap;
        gap: 22px 34px;
        max-width: 340px;
    }
  
    .footer-links a{
        font-size: 15px;
        font-weight: 600;
        color: rgba(0,0,0,0.78);
    }
}
.hero h1{
    max-width: 1500px;
    font-size: clamp(44px, 4.2vw, 64px);
    line-height: 1.08;
}

.hero h1 .highlight{
    white-space: nowrap;
}
/* CLEAN ABOUT TEXT */

.about-left{
    max-width: 620px;
}

.about-text{
    max-width: 560px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(0,0,0,0.72);
    margin-bottom: 22px;
}

.about-text.highlight-box{
    position: relative;
    padding-left: 34px;
}

.about-text.highlight-box::before{
    content: "";
    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    background: #ff5a3d;
    border-radius: 999px;
}

.highlight-retention{
    background: #ffe1dc;
    color: #ff5a3d;
    padding: 3px 7px;
    border-radius: 4px;
    font-weight: 800;
}

.bold-dark{
    color: #111;
    font-weight: 700;
}
.about-section .about-text{
    max-width: 560px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(0,0,0,0.72);
    margin: 0 0 18px 0;
}

.about-copy{
    position: relative;
    padding-left: 30px;
    max-width: 600px;
}

.about-copy::before{
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 8px);
    background: #ff5a3d;
    border-radius: 999px;
}
.about-line{
    display:none;
}

.about-copy{
    position: relative;
    padding-left: 32px;
    max-width: 620px;
    margin-bottom: 34px;
}

.about-copy::before{
    content:"";
    position:absolute;
    left:0;
    top:6px;
    width:4px;
    height:calc(100% - 12px);
    background:#ff5a3d;
    border-radius:999px;
}

.about-section .about-text{
    font-size:17px;
    line-height:1.75;
    color:rgba(0,0,0,0.72);
    margin:0 0 18px 0;
}
/* FINAL MOBILE CLEANUP PATCH */

html,
body{
    width: 100%;
    overflow-x: hidden;
}

/* MOBILE NAV */
@media (max-width: 768px){

    .navbar{
        position: sticky;
        top: 0;
        z-index: 999;
        width: 100%;
        margin: 0;
        padding: 18px 22px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        background: rgba(249,249,249,0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .nav-center,
    .nav-right{
        display: none !important;
    }

    .mobile-menu-btn{
        display: block;
        margin-left: auto;

        background: none;
        border: none;
        color: #111;

        font-size: 38px;
        line-height: 1;
        cursor: pointer;
    }

    .mobile-menu-overlay{
        position: fixed;
        inset: 0;
        z-index: 9999;

        display: flex;
        justify-content: center;
        align-items: center;

        background: rgba(249,249,249,0.82);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
    }

    .mobile-menu-overlay.active{
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-close-btn{
        position: absolute;
        top: 22px;
        right: 26px;

        background: none;
        border: none;
        color: #111;

        font-size: 36px;
        cursor: pointer;
    }

    .mobile-menu-links{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;

        opacity: 0;
        transform: translateY(18px);
        transition: 0.35s ease;
    }

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

    .mobile-menu-links a{
        text-decoration: none;
        color: #111;
        font-size: 24px;
        font-weight: 800;
    }

    .mobile-menu-links .cta-btn{
        margin-top: 8px;
        padding: 15px 34px;
    }
}

/* MOBILE HERO */
@media (max-width: 768px){

    .hero{
        min-height: auto;
        padding: 48px 18px 52px;
    }

    .hero h1{
        max-width: 390px;
        margin: 0 auto;

        font-size: 38px;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .hero h1 .highlight{
        white-space: normal;
    }

    .subtext{
        max-width: 350px;
        margin: 22px auto 0;

        font-size: 18px;
        line-height: 1.5;
    }

    .hero-btn{
        margin-top: 26px;
        padding: 16px 34px;
        font-size: 18px;
    }
}

/* MOBILE PORTFOLIO */
@media (max-width: 768px){

    .portfolio-section{
        padding: 42px 0 32px;
    }

    .portfolio-section h2{
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 28px;
        padding: 0 18px;
    }

    .portfolio-track{
        gap: 16px;
    }

    .video-card{
        width: 280px;
        border-radius: 16px;
    }

    .video-card img{
        height: 158px;
        border-radius: 16px 16px 0 0;
    }

    .video-info{
        padding: 12px 14px 15px;
    }

    .video-info h3{
        font-size: 20px;
        margin-bottom: 4px;
    }

    .video-info p{
        font-size: 14px;
    }
}

/* MOBILE TESTIMONIAL VIDEOS */
@media (max-width: 768px){

    .trust-video-section{
        padding: 44px 16px 48px;
    }

    .trust-video-section h2{
        font-size: 34px;
        line-height: 1.1;
        margin-bottom: 22px;
    }

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

    .trust-video-card{
        border-radius: 16px;
        border-width: 5px;
    }

    .trust-play{
        width: 54px;
        height: 54px;
    }
}

/* MOBILE YOUTUBE PROOF 2 BY 2 */
@media (max-width: 768px){

    .youtube-proof-section{
        padding: 48px 14px 58px;
    }

    .youtube-proof-section h2{
        font-size: 31px;
        line-height: 1.08;
        white-space: normal;
        margin-bottom: 10px;
    }

    .youtube-proof-subtext{
        font-size: 15px;
        margin-bottom: 28px;
    }

    .youtube-proof-grid{
        width: 100%;
        max-width: 430px;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;

        margin: 0 auto;
    }

    .proof-video-card{
        border-width: 4px;
        border-radius: 12px;
        box-shadow: 0 10px 28px rgba(0,0,0,0.10);
    }

    .proof-video-card img{
        width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
        object-fit: cover;
        display: block;
    }
}

/* MOBILE CLIENTS */
@media (max-width: 768px){

    .client-review-section{
        padding: 44px 0 54px;
    }

    .review-label{
        font-size: 12px;
        letter-spacing: 4px;
        margin-bottom: 22px;
    }

    .review-track{
        gap: 16px;
    }

    .review-card{
        width: 290px;
        padding: 20px;
        border-radius: 16px;
    }

    .review-header{
        margin-bottom: 0;
        gap: 12px;
    }

    .review-header img{
        width: 48px;
        height: 48px;
    }

    .review-header h3{
        font-size: 17px;
    }

    .review-header span{
        font-size: 14px;
        color: #555;
    }

    .review-text{
        display: none;
    }
}

/* MOBILE ABOUT */
@media (max-width: 768px){

    .about-section{
        padding: 52px 18px 70px;
    }

    .about-modern{
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 0;
        padding: 0;
    }

    .about-right{
        order: 2;
    }

    .about-left{
        order: 1;
        max-width: 100%;
    }

    .about-tag{
        font-size: 12px;
        letter-spacing: 5px;
        margin-bottom: 14px;
    }

    .about-name{
        font-size: 54px;
        line-height: 0.95;
        margin-bottom: 18px;
    }

    .about-headline{
        font-size: 31px;
        line-height: 1.15;
        margin-bottom: 22px;
    }

    .about-categories{
        gap: 9px;
        letter-spacing: 2px;
        font-size: 10px;
        margin-bottom: 28px;
    }

    .about-copy{
        padding-left: 24px;
        margin-bottom: 28px;
    }

    .about-section .about-text{
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .about-proof-btn{
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 15px;
    }

    .about-right img{
        border-radius: 18px;
    }
}

/* MOBILE FAQ */
@media (max-width: 768px){

    .faq-section{
        padding: 54px 16px 62px;
    }

    .faq-header{
        margin-bottom: 28px;
    }

    .faq-header h2{
        font-size: 34px;
        line-height: 1.1;
    }

    .faq-container{
        padding: 12px;
        border-radius: 18px;
    }

    .faq-question{
        padding: 16px 10px;
        font-size: 16px;
        gap: 16px;
    }

    .faq-answer{
        padding: 0 10px 16px;
        font-size: 15px;
    }

    .faq-cta{
        margin-top: 28px;
    }

    .faq-cta .cta-btn{
        margin: 0 auto;
    }
}

/* MOBILE CONTACT SCREEN */
@media (max-width: 768px){

    .contact-screen{
        padding: 30px 18px;
        min-height: 100vh;
    }

    .back-btn{
        top: 20px;
        left: 20px;
    }

    .contact-box{
        max-width: 100%;
    }

    .contact-box h1{
        font-size: 46px;
        line-height: 1.05;
        white-space: normal;
        margin-bottom: 22px;
    }

    .contact-box > p{
        font-size: 16px;
        line-height: 1.55;
        margin-bottom: 30px;
    }

    .message-buttons{
        flex-direction: column;
        gap: 20px;
    }

    .message-buttons a{
        width: 220px;
        text-align: center;
    }

    .discord-info{
        flex-direction: column;
        gap: 12px;
    }

    .discord-line{
        width: 160px;
        height: 1px;
    }

    .discord-info p{
        font-size: 15px;
        text-align: center;
    }
}
