:root {
    --dark: #050a14;
    --dark-light: #0a1324;
    --yellow: #facc15;
    --gray: #64748b;
    --white: #ffffff;
}html, body {
  overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--dark);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    background: transparent;
    z-index: 9999;
    transition: background 0.3s ease, padding 0.3s ease;
}

nav.nav-scrolled {
    background: rgba(5, 10, 20, 0.9);
    backdrop-filter: blur(6px);
    padding: 15px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.logo span {
    color: var(--yellow);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: 40px;
}
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-cta {
    background: var(--yellow);
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    transition: background 0.3s ease, color 0.3s ease;
}
nav.nav-scrolled .btn-cta {
    background: transparent;
    color: var(--yellow);
    border: 1px solid var(--yellow);
}
.beauty-page nav.nav-scrolled .btn-cta {
    border: 1px solid #b79adf !important;
    color: #b79adf !important;
    background: transparent !important;
}
.beauty-page nav.nav-scrolled .btn-cta:hover {
    background: #b79adf !important;
    color: #fff !important;
}


.beauty-page button.footer-trigger:hover::after {
  opacity: 1;
}


/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
}

.hero h1 {
    font-size: clamp(3.5rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgba(5,10,20,0) 0%, #050a14 100%);
}


.outline {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.hero-info p {
    margin-top: 40px;
    max-width: 400px;
    color: var(--gray);
    font-size: 1.1rem;
}
.hero-cta {
  margin-top: 35px;
  display: inline-block;
  
}

/* SEO SPLIT */
.seo-section {
    padding: 150px 0;
    position: relative;
}

.seo-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250,204,21,0.08) 0%, transparent 70%);
}


.seo-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.seo-label {
    color: var(--yellow);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 25px;
}

.seo-left h2 {
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 40px;
    position: relative;
}

.seo-left h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 80px;
    height: 4px;
    background: var(--yellow);
}

.seo-left p {
    color: var(--gray);
    font-size: 1.15rem;
    max-width: 650px;
    margin-bottom: 22px;
}

.seo-right {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 50px;
}

.seo-statement {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
}

/* PROJECTS */
.projects {
    padding: 150px 0;
}

.section-label {
    color: var(--yellow);
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 40px;
    display: block;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.project-item {
    display: block;
    color: var(--white);
    text-decoration: none;
}
.project-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}
.project-item p {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #94a3b8;
}
.project-item h3,
.project-item p {
    transition: transform 0.4s ease, color 0.3s ease;
}

.project-item:hover h3 {
    transform: translateX(6px);
}

.project-item:hover p {
    transform: translateX(6px);
    color: var(--yellow);
}


.img-wrap {
    height: 600px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #111;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}


.img-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.4s ease;
}


.project-item:hover .img-content {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* TIMELINE */
.timeline-sec {
    padding: 150px 0;
    background:transparent;
}


.timeline-container {
    max-width: 900px;
    position: relative;
}

.line {
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.t-item {
    padding-left: 60px;
    margin-bottom: 100px;
    position: relative;
}

.dot {
    position: absolute;
    left: 0;
    top: 10px;
    width: 15px;
    height: 15px;
    background: var(--yellow);
    border-radius: 50%;
}

.year {
    color: var(--yellow);
    font-weight: 900;
}

/* CONTACT */
.contact {
    padding: 120px 0;
    background: var(--yellow);
    color: #000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}


.contact h2 {
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
}

.email {
    display: inline-block;
    margin-top: 50px;
    font-size: clamp(1.6rem, 4vw, 3rem);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    padding: 10px 0;
    transition: transform 0.3s ease, letter-spacing 0.3s ease;
}
.email::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #000;
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.email:hover {
    transform: translateY(-3px);
    letter-spacing: 1px;
}

.email:hover::before {
    transform: scaleX(1);
}
.email:hover::after {
    transform: translateX(5px);
}

/* MOBILE */
@media (max-width: 900px) {
    .seo-grid {
        grid-template-columns: 1fr;
    }

    .seo-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 40px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}
.nav-links a.active {
    color: var(--yellow);
    position: relative;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--yellow);
}
nav.nav-scrolled {
    background: rgba(5, 10, 20, 0.9);
    backdrop-filter: blur(6px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-img {
    opacity: 0;
    transform: translateY(80px) scale(0.96);
    transition: opacity 1s ease, transform 1.2s cubic-bezier(0.16,1,0.3,1);
}

.reveal-img.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-title {
    transform: translateY(60px);
    opacity: 0;
}

.contact-title.active {
    transform: translateY(0);
    opacity: 1;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.8s ease;
}
.email {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease,
                transform 0.6s ease,
                letter-spacing 0.3s ease;
}

.email.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-mail {
    transition-delay: 0.25s;
}

/* HOVER */
.email:hover {
    letter-spacing: 1px;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.case-study {
    padding: 150px 0;
}

.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.case-left h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.case-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 420px;
}

.case-list {
    list-style: none;
}

.case-list li {
    margin-bottom: 35px;
    font-size: 1.05rem;
    color: var(--white);
}

.case-list strong {
    color: var(--yellow);
    font-weight: 900;
}
.case-split {
     padding: 140px 0;
}
.case-title span {
    display: inline-block;
    background: linear-gradient(135deg, #facc15, #ffd84d);
    color: #000;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 900;
}



.split-grid {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.split-image {
  flex: 0 0 50%;
}

.split-content {
  flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    filter: brightness(0.85) contrast(1.1);
}
.split-image:hover img {
    transform: scale(1.03);
}


.split-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 900;
}

.split-content ul {
    color: var(--gray);
    line-height: 2;
    padding-left: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
    .split-grid {
        grid-template-columns: 1fr;
    }
}
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16,1,0.3,1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16,1,0.3,1);
}
.reveal-mask {
    position: relative;
    overflow: hidden;
}

.reveal-mask span {
    display: block;
    transform: translateY(100%);
    transition: transform 1s cubic-bezier(0.16,1,0.3,1);
}

.reveal-mask.active span {
    transform: translateY(0);
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}


/* MOBILE */
@media (max-width: 900px) {
    .case-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


.glitch-title span {
    display: block;
    transform: translateY(160%) rotate(3deg);
    opacity: 0;
}

.insane p {
    transform: translateY(80px);
    opacity: 0;
}
.insane-label {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}
/* INSANE ANIMATION – FINAL FIX */

.insane .section-label,
.insane .insane-title,
.insane p {
    opacity: 0;
    transform: translateY(60px);
}
/* INSANE SECTION – BIGGER TYPE */

.insane h2 {
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    line-height: 1.05;
     margin-bottom: 25px;
}

.insane p {
    font-size: 1.25rem;
    line-height: 1.8;
}

.insane .section-label {
    font-size: 0.8rem;
    letter-spacing: 6px;
}
.mini-proof {
    margin-top: 25px;
    font-size: 0.95rem;
    opacity: 0.75;
    letter-spacing: 1px;
}

.mini-sub {
    margin-top: 8px;
    font-size: 0.85rem;
    opacity: 0.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.btn-cta.alt {
    background: #000;
    color: var(--yellow);
}
.impact {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; 
    overflow: hidden;
    text-align: center;
    position: relative;
    z-index: 1;
}



.impact-problems {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.problem {
    position: absolute;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.55);
    font-weight: 800;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: float 6s ease-in-out infinite alternate;
}
@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-20px); }
}

.impact-solution {
    position: relative;
    z-index: 5;
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    max-width: 800px;
    text-shadow: 0 0 40px rgba(250,204,21,0.15);
}

.impact-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.impact-center {
    position: relative;
    max-width: 900px;
}

.impact-words span {
    position: absolute;
    width: 100%;
    left: 0;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    opacity: 0;
    transform: translateY(40px);
}
.impact-words span.active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s ease;
}

.impact-final {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    opacity: 0;
}
.hero,
.projects,
.timeline-sec {
    background: var(--dark);
}
.form-toggle {
    margin-top: 40px;
    padding: 16px 36px;
    border-radius: 50px;
    background: #000;
    color: var(--yellow);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* WRAP ANIMACIJA */
.form-wrap {
    max-width: 520px;
    margin: 0 auto;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: max-height 0.7s ease, opacity 0.5s ease, transform 0.5s ease;
}

.form-wrap.active {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
}

/* FORMA STIL */
.contact-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
}

.contact-form textarea {
    resize: none;
}

.submit-btn {
    margin-top: 10px;
    padding: 14px;
    border-radius: 50px;
    border: none;
    background: #000;
    color: var(--yellow);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--yellow);
    width: 0%;
    z-index: 99999;
}
h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}
p {
    line-height: 1.8;
    font-weight: 400;
}
.section-label,
.mini-proof,
.mini-sub {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}
/* ================= CASE STUDY PAGE ================= */

.case-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.case-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.case-hero p {
    max-width: 650px;
    margin: 0 auto;
    color: #94a3b8;
    font-size: 1.1rem;
}

.case-image {
    padding: 60px 0;
}

.case-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.case-content {
    padding: 60px 0 120px;
    max-width: 750px;
    margin: auto;
}

.case-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 40px;
}

.case-content ul {
    color: #94a3b8;
    line-height: 1.9;
    padding-left: 20px;
}

.case-content p {
    color: #94a3b8;
    line-height: 1.8;
}

.back-link {
    display: inline-block;
    margin-top: 50px;
    color: var(--yellow);
    text-decoration: none;
    font-weight: 700;
}
.case-image img {
    transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.case-image:hover img {
    transform: scale(1.04) rotate(0.3deg);
}
.case-stats {
    padding: 140px 0;
    background: var(--dark); 
    text-align: center;
    position: relative;
}



.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--yellow);
    display: block;
}

.stat p {
    color: var(--gray);
    margin-top: 10px;
    font-size: 1.1rem;
}

/* mobile */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--yellow);
    display: block;

  
    font-variant-numeric: tabular-nums;
    min-width: 3ch;
}
.btn-portfolio {
  position: relative;
  display: inline-block;
  margin-top: 40px;
  padding: 18px 48px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 50px;
  overflow: hidden;
  transition: color 0.4s ease;
  text-decoration: none;
  animation: glowPulse 1.8s ease-in-out infinite;
}
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 8px rgba(250,204,21,0.25),
                0 0 16px rgba(250,204,21,0.15);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 32px rgba(250,204,21,0.75),
                0 0 60px rgba(250,204,21,0.35);
    transform: scale(1.04);
  }
  100% {
    box-shadow: 0 0 8px rgba(250,204,21,0.25),
                0 0 16px rgba(250,204,21,0.15);
    transform: scale(1);
  }
}
.btn-portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
  text-decoration: none;
}
.btn-portfolio::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: radial-gradient(circle at center, rgba(250,204,21,0.45), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.btn-portfolio span {
  position: relative;
  z-index: 2;
}

.btn-portfolio:hover::before {
  transform: scaleX(1);
}

.btn-portfolio:hover::after {
  opacity: 1;
}
.btn-portfolio:hover {
  color: #000;
  box-shadow: 0 0 25px rgba(250,204,21,0.35);
}
.center-btn {
  text-align: center;
  margin-top: 60px;
}
.case-process-video {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.process-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    z-index: 1;
}

.video-dark {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 2;
}

.video-text {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 0 20px;
}

.video-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 900;
}

.video-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .case-process-video {
        height: 55vh;
    }

    .process-video {
        object-position: 25% top; 
    }
}
.reveal-video {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-video.active {
    opacity: 1;
    transform: translateY(0);
}
.case-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 10px;
}

.case-label.solution {
    margin-top: 30px;
}

.case-desc {
    color: var(--gray);
    margin: 15px 0 10px;
    font-size: 1.1rem;
    max-width: 500px;
}

.case-list-pro {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.case-list-pro li {
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
    color: #cbd5e1;
}

.case-list-pro li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 900;
}
/* ================= BACK LINK BUTTON ================= */

.back-link {
  display: block;              
  width: fit-content;          
  margin: 60px auto 0;         
  padding: 12px 26px;
  border: 2px solid var(--yellow);
  border-radius: 50px;
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.back-link:hover {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 0 20px rgba(250,204,21,0.35);
  transform: translateY(-2px);
}
/* ================= BEAUTY HERO ================= */

.beauty-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 100px;
    background: linear-gradient(135deg, #f6f1fb 0%, #efe7f8 50%, #f9f5fd 100%);
    position: relative;
    overflow: hidden;
}
.beauty-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(183,154,223,0.35) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    filter: blur(60px);
}

.beauty-hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,170,255,0.25) 0%, transparent 70%);
    bottom: -150px;
    left: -120px;
    filter: blur(70px);
}

.beauty-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8e73c6;  
    font-weight: 600;
    margin-bottom: 15px;
}


.beauty-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.15;
}

.beauty-hero p {
    margin-top: 20px;
    font-size: 1.15rem;
    color: #6b6b6b;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}


.beauty-cta {
    display: inline-block;
    margin-top: 35px;
    padding: 16px 40px;
    border-radius: 50px;
    border: 2px solid #b79adf;
    color: #b79adf;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.beauty-cta:hover {
    background: #b79adf;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(183,154,223,0.35);
}

/* ================= ABOUT ================= */

.beauty-about {
  padding: 140px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f2fb 100%);
  position: relative;
}

.beauty-about::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(183,154,223,0.15) 0%, transparent 70%);
  top: -120px;
  right: -120px;
  filter: blur(60px);
}


.beauty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.beauty-text h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #2b2438;
  letter-spacing: -0.02em;
}

.beauty-text p {
  color: #666;
  margin-bottom: 15px;
}

.beauty-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  filter: brightness(0.95) contrast(1.05);
}

.beauty-page .logo {
    color: #222;
}

.beauty-page .logo span {
    color: #c9a96a;  
}

/* mobile */
@media (max-width: 900px) {
  .beauty-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .beauty-image {
    order: -1;
    margin-bottom: 35px;
  }
}
/* BEAUTY NAV OVERRIDE */
.beauty-hero ~ nav,
body:has(.beauty-hero) nav {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
}

body:has(.beauty-hero) .nav-links a {
    color: #111;  
}

body:has(.beauty-hero) .nav-links a::after {
    background: #111; 
}

body:has(.beauty-hero) .btn-cta {
    background: #111;
    color: #fff;
}

.beauty-page .logo span {
    color: #b79adf !important;
}

.beauty-page .nav-links a::after {
    background: #b79adf !important;
}

.beauty-page .btn-cta {
    background: #b79adf !important;
    color: #fff !important;
}

.beauty-page .btn-cta:hover {
    background: #9c7fd1 !important;
}
.beauty-anim {
    opacity: 0;
    transform: translateY(30px);
    animation: beautyFade 1.2s cubic-bezier(0.16,1,0.3,1) forwards;
}
.beauty-hero,
.glass-box {
  position: relative;
  z-index: 5;
}

.beauty-cta {
  position: relative;
  z-index: 10;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes beautyFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.glass-box {
    position: relative;
    padding: 60px 70px;
    border-radius: 28px;
    backdrop-filter: blur(18px);
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 25px 60px rgba(150,120,200,0.15);
    max-width: 700px;
    margin: 0 auto;
}
.glass-box::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(183,154,223,0.25), rgba(200,170,255,0.2));
    z-index: -1;
    filter: blur(25px);
}
#beautyTitle span {
    opacity: 0;
    display: inline-block;
    transform: translateY(25px);
    animation: letterUp 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes letterUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.beauty-benefits {
  margin-top: 25px;
  margin-bottom: 30px;
  padding-left: 0;
  list-style: none;
}

.beauty-benefits li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #5a4d75;
}


.beauty-secondary-cta {
  display: inline-block;
  padding: 14px 28px;
  background: #b79adf;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(183,154,223,0.35);
  transition: all 0.3s ease;
}

.beauty-secondary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(183,154,223,0.45);
}
.beauty-process {
  padding: 140px 0;
  background: linear-gradient(180deg, #f7f2fb 0%, #ffffff 100%);
  text-align: center;
}

.process-title {
  font-size: 2.2rem;
  margin-bottom: 70px;
  color: #2b2438;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-card {
  padding: 40px 30px;
  border-radius: 24px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(180,150,220,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card span {
  display: inline-block;
  font-size: 0.9rem;
  color: #b79adf;
  margin-bottom: 12px;
  font-weight: 600;
}

.process-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #2b2438;
}

.process-card p {
  color: #666;
  font-size: 0.95rem;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(180,150,220,0.25);
}
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
.step-circle {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
  z-index: 1;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  padding: 6px;
  box-sizing: border-box;
}

.ring-bg {
  fill: none;
  stroke: rgba(183,154,223,0.15);
  stroke-width: 6;
}
.reveal.active .ring-progress {
  stroke-dashoffset: 40;
  filter: drop-shadow(0 0 10px rgba(183,154,223,0.7));
}

.ring-progress {
  fill: none;
  stroke: #b79adf;
  stroke-width: 6;
  stroke-dasharray: 289;   
  stroke-dashoffset: 289;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.16,1,0.3,1);
}
.process-card:nth-child(1).reveal.active .ring-progress {
  stroke-dashoffset: 200; 
}

.process-card:nth-child(2).reveal.active .ring-progress {
  stroke-dashoffset: 115; 
}

.process-card:nth-child(3).reveal.active .ring-progress {
  stroke-dashoffset: 30;
}

.step-circle span {
  position: relative;
  font-weight: 700;
  color: #b79adf;
  z-index: 2;
}
.step-circle::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  z-index: 0;
}

.sticky-showcase {
  position: sticky;
  top: 120px; 
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: flex-start;
}


.showcase-frame {
  position: relative;
  width: 100%;
  height: calc(100vh - 220px);
  min-height: 520px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}


.showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.16,1,0.3,1);
}

.showcase-img.active {
  opacity: 1;
  transform: scale(1);
}
.showcase-step {
  min-height: 100vh;
  padding-bottom: 80px;
}
.split-grid {
  align-items: flex-start;
}
/* fixing my black bug on image */
.beauty-page {
  background: #f6f1fb;
}

.beauty-page html,
.beauty-page body {
  background: #f6f1fb;
}
.beauty-page .beauty-features,
.beauty-page .beauty-result {
  color: #2b2438;
}

.beauty-page .beauty-features h3,
.beauty-page .beauty-result h2 {
  color: #2b2438;
}

.beauty-page .beauty-features p,
.beauty-page .beauty-result p {
  color: #6b5f82;
}
.beauty-footer {
  padding: 120px 20px 140px;
  background: #f6f1fb;
  text-align: center;
}

.beauty-page .footer-trigger {
  position: relative;
  padding: 18px 48px;
  border-radius: 50px;
  background: #b79adf !important;
  border: none;
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.6px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(183,154,223,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.beauty-page .footer-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(183,154,223,0.45);
}

.beauty-page .footer-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.beauty-page .footer-trigger:hover::after {
  opacity: 1;
}

.timeline-wrap {
  position: relative;
  min-height: auto;     
  padding: 60px 0 80px;    
  overflow: hidden;
}

.beauty-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 0;
}

.timeline-line {
  position: absolute;
  top: 300px;
  left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(183,154,223,0.2);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  animation: growLine 1.4s ease forwards;
}

@keyframes growLine {
  from {
    transform: translateX(-50%) scaleY(0);
  }
  to {
    transform: translateX(-50%) scaleY(1);
  }
}
.timeline-item {
  position: relative;
  width: 45%;
  padding: 14px 22px;
  margin: 32px 0;
  font-weight: 600;
  color: #2b2438;
  background: rgba(255,255,255,0.7);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  opacity: 0;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 55%;
  text-align: left;
}
.beauty-page .back-link {
  border: 2px solid #b79adf;
  background: #b79adf;
  color: #fff;
  padding: 18px 42px;          
  border-radius: 60px;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-size: 0.9rem;
  box-shadow: 0 14px 35px rgba(183,154,223,0.35);
  transition: 
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
  position: relative;
}
.timeline-title {
  width: 70%;
  margin: 0 auto 180px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b79adf;
  background: rgba(183,154,223,0.12);
  border: 2px solid #b79adf;
  border-radius: 60px;
  padding: 28px 40px;
  box-shadow: 0 0 0 rgba(183,154,223,0.4);
  animation: trustPulse 2.2s ease-in-out infinite;
  z-index: 2;
}


@keyframes trustPulse {
  0% {
    box-shadow: 0 0 0 rgba(183,154,223,0.25);
  }
  50% {
    box-shadow: 0 0 30px rgba(183,154,223,0.45);
  }
  100% {
    box-shadow: 0 0 0 rgba(183,154,223,0.25);
  }
}


.beauty-page .back-link:hover {
  background: transparent;
  color: #b79adf;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(183,154,223,0.35);
}
/* service& pricing */
.services-pricing.dark {
  background: #0b0f1a;
  color: #fff;
  padding: 120px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-head p {
  color: #9ca3af;
  line-height: 1.6;
}

.spacing-top {
  margin-top: 140px;
}

.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: #111827;
  border-radius: 22px;
  padding: 32px;
  border: 1px solid #1f2937;
}

.service-card.highlight {
  background: linear-gradient(145deg, #1f2937, #111827);
  border-color: #7c3aed;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #9ca3af;
  margin-bottom: 20px;
}

.service-card ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.pricing-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.price-card {
  background: #111827;
  border-radius: 26px;
  padding: 40px 32px;
  border: 1px solid #1f2937;
  position: relative;
}

.price-card.featured {
  border-color: #7c3aed;
  box-shadow: 0 0 0 1px #7c3aed inset;
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #7c3aed;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 16px 0;
}

.price-desc {
  color: #9ca3af;
  margin-bottom: 24px;
}

.price-card ul li {
  margin-bottom: 10px;
}

.btn-primary,
.btn-outline {
  display: block;
  text-align: center;
  margin-top: 32px;
  padding: 14px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.btn-primary {
  background: #7c3aed;
  color: #fff;
}

.btn-outline {
  border: 2px solid #374151;
  color: #fff;
}
.hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 10000;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  left: 0;
  transition: 0.3s ease;
}
/* ================= MOBILE FIX ================= */

@media (max-width: 900px) {

  .center-btn {
    margin-top: 80px; 
  }

  .btn-portfolio {
    padding: 14px 32px;   
    font-size: 0.8rem;   
    letter-spacing: 1.5px;
    animation: none;     
  }
  .contact h2 {
    font-size: 2rem;   
    line-height: 1.1;
    letter-spacing: -0.01em;
  }
  .case-title {
    font-size: 1.7rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }
   .autoservis-page .container {
    padding: 0 25px;
  }

  .autoservis-page .case-title {
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: center;
  }
  .autoservis-page .sticky-showcase {
    display: none;
  }

  .autoservis-page .split-grid {
    flex-direction: column;
    gap: 40px;
  }

  .autoservis-page .mobile-img {
    display: block;
    margin-bottom: 20px;
  }

  .autoservis-page .mobile-img img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  }
   .autoservis-page .case-hero p {
    margin-top: 68px;  
  }
  .img-wrap {
    height: auto;
    aspect-ratio: 16 / 10;
 
}
.mobile-img {
    display: none;
}
   .beauty-image {
    margin-left: -25px;
    margin-right: -25px;
    margin-bottom: 50px;
  }

  .beauty-image img {
    aspect-ratio: 1 / 1.15;  
    object-fit: cover;
    border-radius: 18px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
    .beauty-text h2 {
    font-size: 1.9rem;
    font-weight: 800;
  }
    .beauty-text h2::before {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #b79adf;
    margin-bottom: 18px;
  }
    .nav-links {
    display: none;
  }

.hamburger {
  display: block;
}

}


.hamburger span:first-child {
  top: 0;
}

.hamburger span:last-child {
  bottom: 0;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #050a14;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 9998;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 800;
}

.mobile-menu.active {
  transform: translateY(0);
}
.hamburger.active span:first-child {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:last-child {
  transform: rotate(-45deg);
  bottom: 9px;
}
