    :root {
    --bg: #050505;
    --bg-elevated: #111111;
    --text: #f0ede6;
    --text-muted: #888;
    /* Purple Theme Modification */
    --accent: #8b5cf6;       /* Violet 500 */
    --accent-light: #ddd6fe; /* Violet 200 */
    --accent-dark: #2e1065;  /* Violet 950 */
    --border: #1e1e1e;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container: 1340px;
    }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    ::selection { background: var(--accent); color: #fff; }
    html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--accent-dark) var(--bg); }
    body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
  touch-action: pan-y;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
    a { color: inherit; text-decoration: none; }
    button {
    border: none; background: none; color: inherit;
    cursor: pointer; font-family: inherit;
    }
    .container {
    width: 100%; max-width: var(--container);
    margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem);
    }
    /* ── Loader ─────────────────────────────── */
    .loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.6s;
    }
    .loader.is-loaded { opacity: 0; visibility: hidden; pointer-events: none; }
    .loader__brand {
    font-family: var(--font-heading); font-size: 1.2rem;
    font-weight: 600; letter-spacing: 0.25em; color: var(--accent);
    position: relative;
    text-transform: uppercase;
    }
    .loader__brand::after {
    content: ''; position: absolute; bottom: -8px; left: 0;
    width: 100%; height: 1px; background: var(--accent);
    animation: loaderLine 1.2s ease-in-out infinite;
    }
    @keyframes loaderLine {
    0%, 100% { transform: scaleX(0); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: left; }
    51% { transform-origin: right; }
    }
    /* ── Canvas ─────────────────────────────── */
    #webgl {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; z-index: 1; pointer-events: none;
    }
    /* ── Navigation ─────────────────────────── */
    .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.5rem 0;
    transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
    }
    .nav.is-scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0; border-bottom: 1px solid var(--border);
    }
    .nav__inner { display: flex; align-items: center; justify-content: space-between; }
    .nav__logo {
    font-family: var(--font-heading); font-size: 1.15rem;
    font-weight: 700; letter-spacing: 0.18em; color: var(--text);
    text-transform: uppercase;
    }
    .nav__links { display: flex; align-items: center; gap: 2.5rem; }
    .nav__links a {
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
    color: var(--text-muted); transition: color 0.3s ease; position: relative;
    }
    .nav__links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--accent); transition: width 0.3s ease;
    }
    .nav__links a:hover { color: var(--text); }
    .nav__links a:hover::after { width: 100%; }
    .nav__cta {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
    padding: 0.6rem 1.4rem; border: 1px solid var(--border);
    border-radius: 100px; transition: all 0.35s ease;
    }
    .nav__cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
    .nav__toggle { display: none; font-size: 1.4rem; color: var(--text); }
    /* ── Mobile Menu ────────────────────────── */
    .mobile-menu {
    position: fixed; inset: 0; z-index: 200; background: var(--bg);
    display: flex; flex-direction: column;
    padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .mobile-menu.is-open { transform: translateX(0); }
    .mobile-menu__header { display: flex; align-items: center; justify-content: space-between; }
    .mobile-menu__close { font-size: 1.4rem; color: var(--text-muted); }
    .mobile-menu__nav { display: flex; flex-direction: column; margin-top: 4rem; }
    .mobile-menu__nav a {
    font-family: var(--font-heading); font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 600; letter-spacing: -0.03em; padding: 0.6rem 0;
    color: var(--text-muted); transition: color 0.3s ease;
    border-bottom: 1px solid var(--border);
    }
    .mobile-menu__nav a:hover { color: var(--accent); }
    /* ── Hero ────────────────────────────────── */
    .hero {
    position: relative; z-index: 2;
    min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center;
    padding: 8rem 0 4rem;
    }
    .hero__content { max-width: 720px; }
    .hero__label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 2rem;
    }
    .hero__label::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
    .hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 8.5vw, 7.5rem);
    font-weight: 700; line-height: 0.92; letter-spacing: -0.04em;
    margin-bottom: 2rem;
    }
    .hero__line { display: block; overflow: hidden; }
    .hero__line span { display: block; }
    .hero__line--accent { color: var(--accent); }
    .hero__subtitle {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem); line-height: 1.7;
    color: #D6D3F0;; max-width: 440px;
    margin-bottom: 2.5rem; letter-spacing: -0.005em;
    }
    .hero__actions {
    display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
    }
    .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
    font-family: var(--font-heading); font-size: 0.85rem;
    font-weight: 500; letter-spacing: 0.02em; padding: 1rem 2rem;
    border-radius: 100px; position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    }
    .btn--primary { background: var(--accent); color: #fff; }
    .btn--primary:hover {
    background: var(--accent-light); color: var(--accent-dark); transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.25);
    }
    .btn--outline { border: 1px solid var(--border); color: var(--text); }
    .btn--outline:hover { border-color: var(--accent); color: var(--accent); }
    .btn--large { font-size: 1rem; padding: 1.2rem 2.8rem; }
    /* ── Marquee ─────────────────────────────── */
    .marquee {
    position: relative; z-index: 2; overflow: hidden;
    padding: 1.8rem 0; background: var(--bg);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }
    .marquee__track {
    display: flex; width: max-content;
    will-change: transform;
    }
    .marquee__content {
    display: flex; align-items: center;
    white-space: nowrap; flex-shrink: 0;
    }
    .marquee__item {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300; letter-spacing: -0.01em;
    color: var(--text-muted); padding: 0 1.5rem;
    }
    .marquee__sep { color: var(--accent); opacity: 0.4; font-size: 0.6em; }
    /* ── Section Utilities ───────────────────── */
    .section {
    position: relative; z-index: 2; background: var(--bg);
    padding: clamp(5rem, 10vw, 8rem) 0;
    }
    /* Tight spacing modifier for about section transition */
    #about { padding-bottom: clamp(1rem, 2vw, 2rem); }
    .section--transparent { background: transparent; }
    .section-label {
    font-size: 2rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    display: flex; align-items: center; gap: 1rem;
    }
    .section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 2rem; margin-bottom: clamp(2.5rem, 5vw, 4rem);
    }
    .section-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.82rem; font-weight: 500; color: var(--text-muted);
    transition: color 0.3s ease; flex-shrink: 0;
    }
    .section-link:hover { color: var(--accent); }
    /* ── Clients ─────────────────────────────── */
    .clients {
    position: relative; z-index: 2; background: var(--bg);
    padding: clamp(3rem, 6vw, 5rem) 0;
    }
    .clients__label {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--text-muted);
    text-align: center; margin-bottom: 2.5rem;
    }
    .clients__grid {
    display: flex; align-items: center; justify-content: center;
    gap: clamp(2rem, 5vw, 4rem); flex-wrap: wrap;
    }
    .clients__item {
    font-family: var(--font-heading); font-size: clamp(0.95rem, 1.4vw, 1.2rem);
    font-weight: 600; letter-spacing: -0.01em;
    color: var(--text); opacity: 0.2;
    transition: opacity 0.4s ease;
    }
    .clients__item:hover { opacity: 0.5; }
    /* ── About ───────────────────────────────── */
    .about__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem); align-items: start;
    }
    .about__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600; line-height: 1.15; letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
    }
    .about__desc {
    font-size: clamp(0.9rem, 1.1vw, 1rem); line-height: 1.8;
    color: var(--text-muted); max-width: 480px;
    margin-bottom: 2rem;
    }
    .about__accent-line {
    width: 48px; height: 2px; background: var(--accent);
    }
    .about__stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2.5rem; padding-top: 0.5rem;
    }
    .stat { padding: 1.5rem 0; border-top: 1px solid var(--border); }
    .stat__number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700; letter-spacing: -0.04em;
    color: var(--accent); display: block; margin-bottom: 0.4rem;
    }
    .stat__label { font-size: 0.8rem; line-height: 1.5; color: var(--text-muted); }
    /* ── Team (Modified) ────────────────────── */
    .team {
    padding-top: 0;
    padding-bottom: clamp(3rem, 5vw, 4rem);
    }
    .team__grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    }
    .background {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    
    }


 /* background */
 .team__item{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
 
  background: transparent;
}

.team__item.background::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 31, 92, 0.85); 
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
}


.team__item > *{
  position: relative;
  z-index: 1;
}


.team__item:hover::before{
  opacity: 1;
}


.team__item:hover .team__img{
  transform: scale(1.05);
  filter: brightness(1.08);
}

.team__item{
  text-align: center;
  padding: 40px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team__item{
  position: relative;
}


.team__link{
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: 20px;
}


.team__link{
  text-decoration: none;
}

.team__item:hover::before{
  opacity: 1;
}


@media (hover: none) {
  .team__item::before{
    opacity: 0.15; 
  }
}
.nav__cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  text-decoration: none;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.team__email{
  margin-top: 8px;
  font-size: 14px;
  color: #b9a7ff;
  text-decoration: none;
  opacity: .8;
  transition: opacity .2s ease, color .2s ease;
}



    .team__circle {
    width: clamp(220px, 25vw, 300px); height: clamp(220px, 25vw, 300px);
    border-radius: 50%; overflow: hidden;
    border: 1px solid var(--border); margin-bottom: 2rem;
    position: relative;
    }
    .team__img  {
    object-fit: cover; 
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
    filter: grayscale(0%) contrast(1);
    
}


    #tomas {
      object-position: 0% 79%;
      height: 100%;
      width: 100%;
    }
    
    #andrej {
      object-position: 150% 90%;
      width: 100%; height: 100%;
    }

    #jaroslav {
      width: 100%; height: 100%;
    }

    .team__name {
    font-family: var(--font-heading); font-size: 1.35rem;
    font-weight: 600; margin-bottom: 0.5rem; letter-spacing: -0.02em;
    color: var(--text);
    }
    .team__role {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--accent);
    }



    /* ── Process ─────────────────────────────── */
    #process { padding-top: clamp(2rem, 5vw, 3rem); }
    .process__grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    }
    .process__item { position: relative; }
    .process__number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700; color: var(--accent); opacity: 0.5;
    line-height: 1; margin-bottom: 1.5rem;
    }
    .process__line {
    width: 100%; height: 1px; background: var(--border);
    margin-bottom: 1.5rem; position: relative;
    }
    .process__line-fill {
    position: absolute; top: 0; left: 0;
    width: 0; height: 100%; background: var(--accent);
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .process__item.is-visible .process__line-fill { width: 100%; }
    .process__dot {
    position: absolute; top: -3px; left: 0;
    width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
    }
    .process__title {
    font-family: var(--font-heading); font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.75rem;
    height: 2.4rem;
    display: flex; align-items: flex-end;
    }
    .process__desc {
    font-size: 0.82rem; color: var(--text-muted); line-height: 1.7;
    }
    /* ── Work (Modified) ─────────────────────── */
    .work__grid { display: flex; flex-direction: column; gap: 1.5rem; }
    .work__row { display: flex; gap: 1.5rem; }
    .work__item {
    position: relative; border-radius: 8px; overflow: hidden;
    cursor: pointer;
    }
    .work__item--wide { flex: 7; }
    .work__item--narrow { flex: 5; }
    /* Modified: Reduced height to not be too overwhelming */
    .work__image {
    width: 100%; height: clamp(200px, 28vw, 300px);
    background-size: cover; background-position: center;
    background-color: #1a1a1a; /* Dark gray instead of white */
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .work__item:hover .work__image { transform: scale(1.04); }
    .work__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.7) 100%);
    padding: 2rem; display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.4s ease;
    }
    .work__item:hover .work__overlay { opacity: 1; }
    .work__number {
    position: absolute; top: 1.5rem; left: 2rem;
    font-family: var(--font-heading); font-size: 0.7rem;
    font-weight: 600; letter-spacing: 0.1em; color: var(--text);
    opacity: 0; transform: translateY(-8px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .work__item:hover .work__number { opacity: 0.5; transform: translateY(0); }
    .work__category {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
    }
    .work__title {
    font-family: var(--font-heading); font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.3rem;
    }
    .work__desc {
    font-size: 0.8rem; color: var(--text-muted); line-height: 1.5;
    margin-top: 0.4rem; max-width: 320px;
    }
    .work__year { font-size: 0.78rem; color: var(--text-muted); }
    .work__arrow {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    transform: translateY(-10px) rotate(-45deg); opacity: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .work__item:hover .work__arrow { transform: translateY(0) rotate(0deg); opacity: 1; }
    /* ── Testimonial ─────────────────────────── */
    .testimonial { text-align: center; max-width: 820px; margin: 0 auto; }
    .testimonial__mark {
    font-family: Georgia, serif;
    font-size: clamp(5rem, 12vw, 9rem);
    font-weight: 400; color: var(--accent); opacity: 0.5;
    line-height: 0.4; margin-bottom: 2.5rem; display: block;
    }
    .testimonial__text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.3vw, 1.8rem);
    font-weight: 400; line-height: 1.5; letter-spacing: -0.015em;
    margin-bottom: 2.5rem; font-style: italic;
    color: var(--text);
    }
    .testimonial__author { display: flex; flex-direction: column; gap: 0.2rem; }
    .testimonial__name {
    font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem;
    }
    .testimonial__role { font-size: 0.8rem; color: var(--text-muted); }
    /* ── Services ────────────────────────────── */
    .services__list { border-top: 1px solid var(--border); }
    .services__item {
    display: flex; align-items: flex-start;
    gap: clamp(1.5rem, 3vw, 3rem);
    padding: clamp(1.5rem, 2.5vw, 2.2rem) 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
    }
    .services__item:hover { padding-left: 1.5rem; }
    .services__number {
    font-family: var(--font-heading); font-size: 0.8rem;
    font-weight: 500; color: var(--accent); min-width: 2.5rem;
    padding-top: 0.15rem;
    }
    .services__content { flex: 1; }
    .services__header {
    display: flex; align-items: center; gap: 1rem;
    }
    .services__title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600; letter-spacing: -0.025em;
    transition: color 0.3s ease;
    }
    .services__item:hover .services__title { color: var(--accent); }
    .services__tags {
    display: flex; gap: 0.5rem; margin-top: 0.6rem; flex-wrap: wrap;
    }
    .services__tag {
    font-size: 0.68rem; font-weight: 500; letter-spacing: 0.04em;
    padding: 0.25rem 0.7rem; border: 1px solid var(--border);
    border-radius: 100px; color: var(--text-muted);
    }
    .services__body {
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease, margin 0.4s ease;
    margin-top: 0;
    }
    .services__item.is-active .services__body {
    max-height: 200px; opacity: 1; margin-top: 1rem;
    }
    .services__desc {
    font-size: 0.85rem; color: var(--text-muted);
    max-width: 520px; line-height: 1.7;
    }
    .services__arrow {
    font-size: 1.3rem; color: var(--text-muted);
    transition: all 0.4s ease; flex-shrink: 0;
    margin-left: auto; padding-top: 0.15rem;
    }
    .services__item:hover .services__arrow { color: var(--accent); }
    .services__item.is-active .services__arrow { transform: rotate(45deg); color: var(--accent); }
    /* ── CTA ─────────────────────────────────── */
    .cta {
    position: relative; z-index: 2;
    padding: clamp(6rem, 14vw, 12rem) 0;
    text-align: center; background: transparent;
    }
    .cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 8vw, 7rem);
    font-weight: 700; line-height: 0.92;
    letter-spacing: -0.04em; margin-bottom: 3rem;
    }
    .cta__title span { display: block; }
    .cta__title--accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    }
    /* ── Footer ──────────────────────────────── */
    .footer {
    position: relative; z-index: 2; background: var(--bg);
    border-top: 1px solid var(--border);
    padding: clamp(3rem, 6vw, 5rem) 0 2rem;
    }
    .footer__grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    margin-bottom: clamp(3rem, 5vw, 4rem);
    }
    .footer__logo {
    font-family: var(--font-heading); font-size: 1.15rem;
    font-weight: 700; letter-spacing: 0.18em; display: block; margin-bottom: 1rem;
    text-transform: uppercase;
    }
    .footer__tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; max-width: 280px; }
    .footer__col  h4 {
    font-family: var(--font-heading); font-size: 0.72rem;
    font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 1.2rem;
    }
    .footer__col a {
    display: block; font-size: 0.85rem; color: var(--text-muted);
    padding: 0.35rem 0; transition: color 0.3s ease;
    }
    .footer__col a:hover { color: var(--accent); }
    .footer__bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 2rem; border-top: 1px solid var(--border);
    font-size: 0.75rem; color: var(--text-muted);
    }
    .footer__bottom a { color: var(--text-muted); transition: color 0.3s ease; }
    .footer__bottom a:hover { color: var(--accent); }
    /* ── Divider ─────────────────────────────── */
    .divider {
    position: relative; z-index: 2; background: var(--bg);
    padding: 0; height: 1px;
    }
    .divider__line {
    width: 100%; height: 1px; background: var(--border); position: relative;
    }
    .divider__dot {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent); opacity: 0.4;
    }
    /* ── Modal Overlay ───────────────────────── */
    .modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(5,5,5,0.95);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.5s ease;
    padding: 1rem;
    }
    .modal-overlay.is-active { opacity: 1; visibility: visible; }
    .modal-content {
    width: 100%; max-width: 800px;
    background: transparent;
    position: relative;
    transform: translateY(20px); transition: transform 0.5s ease;
    }
    .modal-overlay.is-active .modal-content { transform: translateY(0); }
    .form-tabs {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 1.5rem; margin-bottom: 4rem; position: relative;
    }
    .form-tab {
    padding: 0.8rem 1.2rem;
    font-family: var(--font-heading); font-size: 0.95rem; font-weight: 500;
    color: var(--text-muted); cursor: pointer;
    position: relative; transition: color 0.3s;
    border-right: 1px solid var(--border);
    }
    .form-tab:last-child { border-right: none; }
    .form-tab:hover, .form-tab.is-active { color: var(--text); }
    .form-input-group {
    position: relative; margin-bottom: 2.5rem;
    }
    .form-input {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0; font-family: var(--font-body); font-size: 0.95rem;
    color: var(--text); outline: none; border-radius: 0;
    transition: border-color 0.3s ease;
    }
    .form-input:focus { border-color: var(--accent); }
    .form-input::placeholder { color: #555; }
    .form-captcha {
    background: #111; border: 1px solid var(--border);
    border-radius: 4px; padding: 0.8rem 1.2rem;
    display: inline-flex; align-items: center; gap: 1rem;
    margin-bottom: 3rem; cursor: pointer; user-select: none;
    }
    .checkbox-fake {
    width: 24px; height: 24px; border: 2px solid #555; border-radius: 2px;
    position: relative; transition: all 0.2s;
    }
    .checkbox-fake.checked { border-color: var(--accent); background: var(--accent); }
    .checkbox-fake.checked::after {
    content: ''; position: absolute; left: 7px; top: 3px; width: 6px; height: 12px;
    border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg);
    }
    .captcha-text { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
    .modal-close {
    position: absolute; top: -60px; right: 0;
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border); border-radius: 50%; color: var(--text);
    transition: all 0.3s; z-index: 10;
    }
    .modal-close:hover { border-color: var(--accent); color: var(--accent); transform: rotate(90deg); }
    /* Privacy Modal Specifics */

.modal-close-privacy {
    position: absolute !important; 
    top: 20px;
    right: 20px;
    z-index: 1001; 
    background: #000; 
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-close-privacy:hover {
border-color: var(--accent); color: var(--accent); transform: rotate(90deg);
}

.privacy-content-wrapper {
    max-height: 75vh; 
    overflow-y: auto;
    padding-right: 15px; 
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: clamp(2rem, 5vw, 3rem);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

    .privacy-content-wrapper::-webkit-scrollbar { width: 6px; }
    .privacy-content-wrapper::-webkit-scrollbar-track { background: var(--bg); }
    .privacy-content-wrapper::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
    .privacy-content-wrapper h2 {
    font-family: var(--font-heading); color: var(--text); font-size: 1.5rem; margin-bottom: 1.5rem;
    }
    .privacy-content-wrapper h3 {
    font-family: var(--font-heading); color: var(--text); font-size: 1.1rem; margin-top: 2rem; margin-bottom: 1rem;
    }
    .privacy-content-wrapper ul { padding-left: 1.2rem; margin-bottom: 1rem; }
    .privacy-content-wrapper li { margin-bottom: 0.5rem; }
    .privacy-content-wrapper p { margin-bottom: 1rem; }
    /* ── Responsive ──────────────────────────── */
    @media (max-width: 1024px) {
    .about__grid { grid-template-columns: 1fr; gap: 3rem; }
    .process__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    }
    @media (max-width: 768px) {
        .modal-close {
    position: sticky !important; 
    bottom: 50px;
    left: 500px;
    z-index: 2000 !important;
    background: rgba(0, 0, 0, 0.7) !important; 
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;

    
}

.modal-close:hover {
 background: #8b5cf6; 
    transform: scale(1.1), rotate(90deg);
}

.modal-content {
    width: 95%;
    max-height: 85vh !important;
    overflow-y: auto !important; 
    padding-top: 50px !important; 
    padding-bottom: 30px !important;
    -webkit-overflow-scrolling: touch; 
}
.send {
    width: 100% !important;
    margin-top: 20px !important;
    padding: 1.2rem !important;
}
    /* Nav */
    .nav__links, .nav__cta { display: none; }
    .nav__toggle { display: block; }
    /* Hero */
    .hero { padding: 7rem 0 3rem; min-height: 100svh; }
    .hero__subtitle { max-width: 100%; }
    .hero__label { margin-bottom: 1.5rem; }
    .hero__actions { justify-content: flex-start; }
    /* Clients */
    .clients__grid { gap: 1rem 2rem; }
    /* About */
    .about__stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    /* Team */
    .team__grid { gap: 3rem; }
    /* Process */
    .process__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .process__title { height: auto; }
    /* Work */
    .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .work__row { flex-direction: column; }
    .work__image { height: clamp(200px, 55vw, 240px); }
    .work__overlay { opacity: 1; }
    .work__arrow { opacity: 1; transform: translateY(0) rotate(0deg); }
    .work__number { opacity: 0.5; transform: translateY(0); }
    /* Testimonial */
    .testimonial { padding: 0 0.5rem; }
    .testimonial__mark { margin-bottom: 1.5rem; }
    /* Services */
    .services__item:hover { padding-left: 0; }
    .services__tags { display: none; }
    /* Footer */
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    /* Modal */
    .form-tabs { flex-direction: column; gap: 0.5rem; align-items: center; margin-bottom: 2rem; }
    .form-tab { border-right: none; border-bottom: 1px solid var(--border); width: 100%; text-align: center; }
    .form-tab:last-child { border-bottom: none; }
    }
    @media (max-width: 480px) {

        
    /* Hero */
    .hero__title { font-size: clamp(2.5rem, 13vw, 4rem); }
    .hero__subtitle { font-size: 0.9rem; margin-bottom: 2rem; }
    .btn { width: 100%; }
    /* About */
    .about__title { font-size: clamp(1.5rem, 6vw, 2rem); }
    .about__stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat { padding: 1rem 0; }
    .stat__number { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    /* Work */
    .work__image { height: 180px; }
    .work__overlay { padding: 1.2rem; }
    .work__title { font-size: 1.1rem; }
    .work__desc { font-size: 0.75rem; }
    /* Services */
    .services__number { min-width: 2rem; }
    .services__title { font-size: 1.1rem; }
    /* CTA */
    .cta { padding: clamp(4rem, 10vw, 6rem) 0; }
    .cta__title { font-size: clamp(2rem, 11vw, 3.5rem); margin-bottom: 2rem; }
    .btn--large { width: 100%; justify-content: center; padding: 1rem 1.5rem; font-size: 0.9rem; }
    /* Clients */
    .clients__item { font-size: 0.82rem; }
    .clients__label { font-size: 0.62rem; margin-bottom: 1.5rem; }
    /* Testimonial */
    .testimonial__text { font-size: 1.05rem; line-height: 1.6; }
    .testimonial__mark { font-size: 4rem; }
    /* Footer */
    .footer__bottom { flex-direction: column; gap: 0.6rem; text-align: center; }
    /* Bg numbers */
    }
    /* Touch devices — disable hover-only effects */
    @media (hover: none) {
    .services__item:hover { padding-left: 0; }
    .services__item:hover .services__title { color: inherit; }
    .services__item:hover .services__arrow { color: var(--text-muted); }
    .services__item.is-active .services__title { color: var(--accent); }
    .services__item.is-active .services__arrow { color: var(--accent); transform: rotate(45deg); }
    .work__item:hover .work__image { transform: none; }
    .work__overlay { opacity: 1; }
    .work__arrow { opacity: 1; transform: translateY(0) rotate(0deg); }
    .work__number { opacity: 0.5; transform: translateY(0); }
    .nav__cta:hover { background: transparent; border-color: var(--border); color: inherit; }
    .clients__item { opacity: 0.25; }
    .team__item:hover .team__img { transform: none; filter: brightness(1); }
    }
    @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    }
    }
    


@media (min-width: 661px) and (max-width: 1024px) {
  .team__grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    justify-items: center; 
  }


  .team__item:last-child {
    grid-column: 1 / -1;
  }
}



.team__social{
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  
}

.team__social-title{
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.team__social-links{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.team__social-btn{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--border);
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: var(--accent-light);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.team__social-btn .iconify{
  font-size: 24px;
}

.team__social-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.55);
  background: rgba(139, 92, 246, 0.10);
  color: var(--text);
  box-shadow: 0 14px 40px rgba(139, 92, 246, 0.18);
}

@media (max-width: 480px){
  .team__social-btn{
    width: 50px;
    height: 50px;
  }
  .team__social-btn .iconify{
    font-size: 22px;
  }
}





.team__social-email{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);

  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);

  background: rgba(17,17,17,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: all .3s ease;
}

.team__social-email .iconify{
  font-size: 18px;
}

.team__social-email:hover{
  color: var(--text);
  border-color: rgba(139,92,246,0.6);
  background: rgba(139,92,246,0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139,92,246,0.15);
}

.team__social-title-email{
  font-family: var(--font-heading);
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}